Replies

fahdjeddah
09 Nov 2015, 22:44

RE:

Spotware said:

Dear Trader,

You could loop through all positions with the same symbol and modify the TP or SL. The following code snippet loops though all positions and if the Symbol of the position is EURUSD it prints the word "Hello" in the log.

            foreach (var position in Positions)
            {
                if (position.SymbolCode == "EURUSD")
                {

                    Print("hello");
                }
            }

 

Thank you .

can you please me show me these point:

what code or function i have to use to change the TP to place i click by mouse?

 


@fahdjeddah

fahdjeddah
23 Jun 2015, 13:49

We want to able show/hide symbols , many traders only using 5 or less pairs to trade .


@fahdjeddah