Hello, i am asking for help of all you code gurus and alike
.
I have an EA that has OrderSend command with parameters set for comment:
OrderSend(Symbol(),OP_SELL,mylotsi,SellPrice,slippage,sl,tp,"triangle"+MagicNumber,MagicNumber,0,ArrowsColor);
On orders, this manifests like each order having a comment triangle100208, 100208 being my personal set magicnumber. Now, I would like to modify OrderSend line syntax, to clear comment completely from orders. Do I just delete red stuff and leave commas, like this?
OrderSend(Symbol(),OP_SELL,mylotsi,SellPrice,slippage,sl,tp,,,0,ArrowsColor);
Or what do I have to do to clear comment?
Thnx in advance.

I have an EA that has OrderSend command with parameters set for comment:
OrderSend(Symbol(),OP_SELL,mylotsi,SellPrice,slippage,sl,tp,"triangle"+MagicNumber,MagicNumber,0,ArrowsColor);
On orders, this manifests like each order having a comment triangle100208, 100208 being my personal set magicnumber. Now, I would like to modify OrderSend line syntax, to clear comment completely from orders. Do I just delete red stuff and leave commas, like this?
OrderSend(Symbol(),OP_SELL,mylotsi,SellPrice,slippage,sl,tp,,,0,ArrowsColor);
Or what do I have to do to clear comment?
Thnx in advance.