c327515 / Publications
Forum
How to solve the problem of repeated open orders ?
In OnTick(), if i want sell gold in $ 3230 , due to delays in broker,the next tick not find 3230 Position,repeated sell,i used Sleep() ,but not much effect. Is there any other way
i find a if-else bug,please tell me why?
my source: if (condition1) { operator1; } else if (condition2) { operator2; } else if (condition3) { operator3; } //but metaeditor " catl+," format this: if (condition1) { operator1; } else if (condition2) { operator2; } else if (condition3) { operator3; } my condition1,2,3 are same
why invalid price,please help me
i print the Ask(),Bid() in the ticks,but sell stop is invalid. for examp: Ask:2920.69 -- Bid:2920.63 ,i send the sell stop in 2920.54, is invalid price , Would you mind tell me the reason
How to obtain data from over 100000 Bars
CopyRates only 100000 Bars,for example,the earliest time of 1-minute Bar is 2024.11, i want data for 2027.10 and before, What should I do