Hi,
After studying the manual, I am unclear if reverse will give the following desired behavior:
A sell signal is encountered and one short position opened. Four more sell signals are encountered and 4 short positions are opened to the maximum allowed (5). Two more sell signals are encountered and ignored. A buy signal is encountered and all 5 short positions are closed with 1 long position opened.
Is this how reverseShort and reverseLong work?
if (sell_signal) {
reverseShort(5); }
else if(buy_signal) {
reverseLong(5); }
Thanks!