My code segment is similar to this:

Buy = Cross(FStRSISm,ForeignStochRSI);  
Sell = Cross(ForeignStochRSI,FStRSISm); 
Short = Sell;
Cover = Buy;

ProfStop = 8.25; //Optimize("Prof",8.25,2.25,13.25,1); 
TrailStop = 5.25; //Optimize("Trail",5.25,3.25,10.25,1);
ApplyStop(stopTypeProfit, stopModePercent, ProfStop);
ApplyStop(stopTypeTrailing, stopModePercent, TrailStop);

PlotShapes(Buy*shapeUpArrow + Sell*shapeDownArrow,IIf(Buy,colorGreen,colorRed));
PlotShapes(Cover*shapeHollowUpArrow + 
Short*shapeHollowDownArrow,IIf(Cover,colorBlue,colorOrange));

It is obviously plotting arrows based on the buy and sell conditions, but how 
can I get the arrows to show the scaling out? 

Many thanks, Chris.

Reply via email to