The signal is temporarily disabled for new subscriptions
Subscription will be enabled when trading starts
- Equity
- Drawdown
Distribution
No data
- Deposit load
- Drawdown
The average slippage based on execution statistics on real accounts of various brokers is specified in pips. It depends on the difference between the provider's quotes from "SandaiinvestmentCo-Real" and the subscriber's quotes, as well as on order execution delays. Lower values mean better quality of copying.
No data
struct MqlTradeRequest
{
ENUM_TRADE_REQUEST_ACTIONS action; // Trade operation type
ulong magic; // Expert Advisor ID (magic number)
ulong order; // Order ticket
string symbol; // Trade symbol
double volume; // Requested volume for a deal in lots
double price; // Price
double stoplimit; // StopLimit level of the order
double sl; // Stop Loss level of the order
double tp; // Take Profit level of the order
ulong deviation; // Maximal possible deviation from the requested price
ENUM_ORDER_TYPE type; // Order type
ENUM_ORDER_TYPE_FILLING type_filling; // Order execution type
ENUM_ORDER_TYPE_TIME type_time; // Order expiration type
datetime expiration; // Order expiration time (for the orders of ORDER_TIME_SPECIFIED type)
string comment; // Order comment
ulong position; // Position ticket
ulong position_by; // The ticket of an opposite position
};