Topic: Alert in the EA`s

I want to display the logical group for this purpose. Is that possible? And how would I have to formulate that ?.


Print ("Market: " + _Symbol + " " + _Period + ", type : " + IntegerToString (type) + ", size : "  + DoubleToString (lots, 2 ));


Thanks

Re: Alert in the EA`s

Find the this function bool Strategy::IsUsingLogicalGroups()
It has isUsingGroups=true; on two places.

Just add below it:

Print("Slot: " + IntegerToString(slot + 1) + ", Logical group: " +  logicalGroup);

3 (edited by tho.schu 2017-06-23 13:58:05)

Re: Alert in the EA`s

This is not the function which I search. I get a warning, but not like I need. I need the display in this context.


bool ActionTrade::ManageOrderSend(int type, double lots, int stopLoss, int takeProfit,
                                  TrailingStopMode trlMode, int trlStop, int brkEven)
{

Print ("Market: " + _Symbol + " " + _Period + ", type : " + IntegerToString (type) + ", size : "  + DoubleToString (lots, 2));

    trailingMode = trlMode;
    trailingStop = trlStop;
    breakEven    = brkEven;

Post's attachments

Example.gif 60.96 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.