Are there any funcions to recover the ticker which is in a trade?
Hello,
Maybe something simple like the following might get it.
This could be adapted for interpretation window , explore etc.
[ CODE ]
// YOUR SYSTEM
intrade=Flip(Buy,Sell);
Title=WriteIf(intrade,Name(),“NOT IN TRADE”);
[ / CODE ]
Anthony
1 Like
@Anthony when you use code tags, they should be typed WITHOUT spaces:
Opening tag:
[ CODE ] -- that is wrong (spaces are present)
[code] -- this is OK (spaces are NOT present)
... your code
Closing tag
[ / CODE ] -- that is wrong (spaces are present)
[/code] - that is OK (spaces are NOT present)
And quite frankly, instead of typing this, just PASTE the code, MARK it with the mouse and
press
</>
button in the toolbar. That would automatically put proper tags, so you don’t need to type them manually.
With proper tag your code would look like this:
// YOUR SYSTEM
intrade=Flip(Buy,Sell);
Title=WriteIf(intrade,Name(),“NOT IN TRADE”);