Topics
Replies

phil.weekes
03 Jul 2020, 19:00

RE:

PanagiotisCharalampous said:

Hi Phil,

You can add your stop loss in the following method

ExecuteMarketOrder(tradeType, strSymbol, volumeInUnits, cBotLabel, 0, TP_in_pips);

there were 0 is at the moment. You just need to replace it with the stop loss you want.

Best Regards,

Panagiotis 

Join us on Telegram

 

Thanks Panagiotis, I really appreciate the help. I added in a couple of parameters for the stop loss then wrote a piece of code in for the stop loss like I have already have for my take profit as below:

double SL_in_pips = 0.0;

if (UseSL == true)
                SL_in_pips = StopLoss;

I then adjusted the line of code that you suggested and it works perfectly. 

 

Kind regards,

Phil.


@phil.weekes