View Single Post
Old 2009-04-15, 03:38 AM   #67 (permalink)
Batchboy
Site Supporter
 
Posts: 414

Default

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
Batchboy is offline   Reply With Quote