PureBytes Links
Trading Reference Links
|
Greetings,
Let me make sure I understand this. If I want to sell on the 5th day after
a buy occurs, I would use:
sell=ref(buy,-5)?
In order to sell after a certain condition is true for the two days prior, I
would use:
If Condition1 and Condition2, buy on open next day?
How would I code this since it also references yesterday and the day before?
Randy
> And back to your request: if you want to sell after 5 bars from buy
> what you really want is a NEGATIVE offset:
> sell = ref( buy, -5 );
> this is so because you want to generate a sell signal knowing that 5 bars
ago
> a buy occurred. You don't need to look into the future because buy aleady
> happened.
> Best regards,
> Tomasz Janeczko
> ===============
|