I have an entry, and am trying to make a unique entry signal everytime a position is opened, "LongEntry" + int LongEntryCount, where it starts with 1 and adds everytime it fills. I know to set the SL and TP from that same entry signal.
Is there a way to be able to move the SL up to my break even point once certain conditions are met? Or is that only possible if the conditions are 'static' and update OnBarUpdate()?
Is there a method I can use to determine when my position has either hit TP or the SL? I am using horizontal lines to draw my BE trigger point and my BE price, effectively 3 ticks above entry to account for commissions, and would like to use the event of it hitting TP or SL to change those lines to Brushes.Transparent.
Ideally, I want to use unique entries so that each entry has its own SL and TP, which I think I may have figured out.

Comment