G6
Multiple buylimit or selllimit
13 Dec 2018, 05:03
How to open multiple buylimit orders, such as: at the current price of gold every 50 points to open a buylimit order for a total of 10 how to write

PanagiotisCharalampous
13 Dec 2018, 10:03
Hi jasson gu,
Here is an example
for (int i = 1; i <= 10; i++) { PlaceLimitOrder(TradeType.Buy, Symbol, 1000, Symbol.Ask - (50 * i * Symbol.PipSize)); }Best Regards,
Panagiotis
@PanagiotisCharalampous