OK, for 5-digit, I multiplied the applicable items by 10, did I do this right?? It certainly needed it as the 5-digit kicked-in on this platform and the one trade did 1/10th size expected.
-----------
int TakeProfit_L = 390; // Take Profit in points
int StopLoss_L = 1470; // Stop Loss in points
int TakeProfit_S = 320; // Take Profit in points
int StopLoss_S = 2670; // Stop Loss in points
int TradeTime=18; // Time to enter the market
int t1=6;
int t2=2;
int delta_L=60;
int delta_S=210;
extern double lot = 0.01; // Lot size
int Orders=1; // maximal number of positions opened at a time
int MaxOpenTime=504;
int BigLotSize = 60; // By how much lot size is multiplicated in Big lot
--------------
To find spread to multiply it X10 you have to scroll way to the bottom past all those fixed lot sizes and just before actual TA decision making codes.
jb |