PureBytes Links
Trading Reference Links
|
Would someone help me out with a bit of EL code?
I'm trying to set my initial stop to below the Low of a swinglow bar which
occurred the day before I enter long. I thought the code AT$ before a price
would indicate that price for the entry day.
I've tried this (but TS4 ignores my command to exit):
If C>Average(C,20) and C<C[1] and C[1]<C[2] then
Buy("Entry1") tomorrow at H{of today} + 1 point stop;
If MarketPosition= 1 then exitlong("EntryStop") from entry("Entry1") AT$
Low[1] Stop;
Thankyou for any help you can offer.
|