Hi all, I'm testing a system which increases the number of positions as price moves in our favor, for example at $0.1 price intervals. entry at $25.00 2nd position at $25.10 3rd position at $25.20 4th position at $25.30 ...... ..... ..... Example:
fiblevel=..... // this is the trigger line buy=cross(H,fiblevel); buyprice=fiblevel; The first entry is ok and the entry price is exactly the same as the trigger price (I don't want to trade only at the closing price of the bar). My question is how to enter the rest of the positions. My solution was this: fiblevel=..... // this is the trigger line buy=cross(H,fiblevel) or cross(H,fiblevel+ 0.1) or cross(H,fiblevel+ 0.2).... etc My problem now is the buyprice variable, because I want to enter at 0.1 price intervals, and if these occur during the same bar I don't know how to define several entry prices during the same bar. Is there another way to do this? thanks very much
