| 
 PureBytes Links 
Trading Reference Links 
 | 
Phil,
I dug this out of an archive:
You are correct there is no function to tell you which signal has =
entered you into a position.  However you can act solely on that entry =
with coding.  For Example if your entry was:
If Condition1 then Buy("B1") at close; {You must name the entry}
You could say then to act only on that entry
If Condition2 then Exitlong from entry("B1") at close;
This will only let you act on that entry.
hope it helps!
regards
Adam
 |