- Accounts & Connection Management
- Data Management & Analysis
- Price Monitoring
- Charting
- Trading
- Scanners
-
Builders
-
Manual Strategy Builder
- Main Concept
- Operand Component
- Algo Elements
-
Use Cases
- How to create a condition on something crossing something
- How to create an indicator based on another indicator
- How to calculate a stop loss based on indicator
- How to submit stop order based on calculated price
- How to calculate a current bar price using a price type from inputs
- How to Use a Closed Bar Price
- Automatic Strategy Builder
-
Manual Strategy Builder
- Autotrading
- FinScript
- Trade Analysis
- Media Feeds
- Logs & Notifications
- UI & UX
Basic concepts
To create Exit Signal a developer should create a class and inherit it from one of the following classes:
StopLossTakeProfitTradeExitSignal - this class is to set Stop Loss and Take Profit levels.Â
ByMarketTradeExitSignal - this class is to send a signal to close position immediately by market;
In general exit signals works the following way: each time new bar received the engine check the whole collection of exit signals. If some signal returns a request to close position, it will close the position at once by Market order. Otherwise, if some signals returns a request to change Stop Loss and Take Profit levels, then it will select those which are closer to the current price and set them as new Stop Loss and Take Profit levels;
 There are several standard trade exit signal models a developer can use for strategy development;
Developed exit signal models can be used as strategy parameters in Strategy Runner and Backtester as a part of exit signal collection.
- Accounts & Connection Management
- Data Management & Analysis
- Price Monitoring
- Charting
- Trading
- Scanners
-
Builders
-
Manual Strategy Builder
- Main Concept
- Operand Component
- Algo Elements
-
Use Cases
- How to create a condition on something crossing something
- How to create an indicator based on another indicator
- How to calculate a stop loss based on indicator
- How to submit stop order based on calculated price
- How to calculate a current bar price using a price type from inputs
- How to Use a Closed Bar Price
- Automatic Strategy Builder
-
Manual Strategy Builder
- Autotrading
- FinScript
- Trade Analysis
- Media Feeds
- Logs & Notifications
- UI & UX