Only post code that compiles. What you wrote is bable.
//input Paramters input int TakeProfit = 100; input int Stoploss = 25; input double Lots =0.01 input bool UseTrailingStop = true; input int TrailingStop =50;
its not compiling , help.
Mary A Thompson #: its not compiling , help.
Did you even look at the errors that the compiler reports?
//input Paramters input int TakeProfit = 100; input int Stoploss = 25; input double Lots = 0.01; input bool UseTrailingStop = true; input int TrailingStop = 50;
You are missing a semicolon at the end of the 3rd input.
Style your code so that it will be easier to spot errors and logic problems.
Thank you

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
adding Trailing is not working ,please your help will be appreciated.