Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Oct 13, 2023
1 parent 7a816a8 commit ef52591
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions docs/concepts/advanced/emulated_orders.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ trading venue.
## Order types
| | Can emulate | Released type |
|------------------------|-------------|---------------|
| `MARKET` | No | - |
| `MARKET_TO_LIMIT` | No | - |
| `LIMIT` | Yes | `MARKET` |
| `STOP_MARKET` | Yes | `MARKET` |
| `STOP_LIMIT` | Yes | `LIMIT` |
| `MARKET_IF_TOUCHED` | Yes | `MARKET` |
| `LIMIT_IF_TOUCHED` | Yes | `LIMIT` |
| `TRAILING_STOP_MARKET` | Yes | `MARKET` |
| `TRAILING_STOP_LIMIT` | Yes | `LIMIT` |
| `MARKET` | | - |
| `MARKET_TO_LIMIT` | | - |
| `LIMIT` | | `MARKET` |
| `STOP_MARKET` | | `MARKET` |
| `STOP_LIMIT` | | `LIMIT` |
| `MARKET_IF_TOUCHED` | | `MARKET` |
| `LIMIT_IF_TOUCHED` | | `LIMIT` |
| `TRAILING_STOP_MARKET` | | `MARKET` |
| `TRAILING_STOP_LIMIT` | | `LIMIT` |

## Querying
When writing trading strategies, it may be necessary to know the state of emulated orders in the system.
Expand Down
14 changes: 7 additions & 7 deletions docs/integrations/binance.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ E.g. for Binance Futures, the said instruments symbol is `BTCUSDT-PERP` within t
## Order types
| | Spot | Margin | Futures |
|------------------------|---------------------------------|---------------------------------|-------------------|
| `MARKET` | Yes | Yes | Yes |
| `LIMIT` | Yes | Yes | Yes |
| `STOP_MARKET` | No | Yes | Yes |
| `STOP_LIMIT` | Yes (`post-only` not available) | Yes (`post-only` not available) | Yes |
| `MARKET_IF_TOUCHED` | No | No | Yes |
| `LIMIT_IF_TOUCHED` | Yes | Yes | Yes |
| `TRAILING_STOP_MARKET` | No | No | Yes |
| `MARKET` | | | |
| `LIMIT` | | | |
| `STOP_MARKET` | | | |
| `STOP_LIMIT` | (`post-only` not available) | (`post-only` not available) | |
| `MARKET_IF_TOUCHED` | | | |
| `LIMIT_IF_TOUCHED` | | | |
| `TRAILING_STOP_MARKET` | | | |

### Trailing stops
Binance use the concept of an *activation price* for trailing stops ([see docs](https://www.binance.com/en-AU/support/faq/what-is-a-trailing-stop-order-360042299292)).
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/backtest_high_level.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Backtest (High-level API)
# Backtest (high-level API)

This tutorial runs through how to load raw data (external to Nautilus) into the data catalog, through to a single 'one-shot' backtest run.

Expand Down Expand Up @@ -27,7 +27,7 @@ from nautilus_trader.test_kit.providers import CSVTickDataLoader
from nautilus_trader.test_kit.providers import TestInstrumentProvider
```

## Getting some raw data
## Getting raw data

As a once off before we start the notebook - we need to download some sample data for backtesting.

Expand Down

0 comments on commit ef52591

Please sign in to comment.