could you explain the 4 TS settings, are these trailing stop features and if so is there a trailingstop feature that will begin to trail immediately.
also could you script this?
/*
NEED A ONE TIME EXECUTEALBLE SCRIPT
*/
extern double TradeType=1 // 1=buy 2=sell // could also make a buy script and a sell script
extern double StopLoss=30;
extern double TakeProfit=500;
extern double TrailingStop=15;
extern bool TrailImmediately=true;
extern double Slippage=1;
extern double Lots=0.1;
extern int OrderTries=5;
// Build unique magic number for multiple positions/pairs/monitor trailing/adjusttrailing stops
// IS THIS EVEN POSSIBLE???
THANKS!