I have 2 scenarios:
1 - Strategy or Indicator are running on the chart, and I need to pass a value from that instance of the indicator/strategy to another Add-On (That stand-alone add-on is actually managing the trade in terms of order placement/exits).
2 - One add-on is running that is generating signals, and I want to pass a value from that add-on to another stand-alone Add-On.
How to accomplish passing values to another external add-on for both of these cases?
One simple way that I can see - I can just write something to local file, and by using .Net File watcher class - to pick it up in add-on whenever that file is modified.
Could you recommend any other ways to pass value to another stand-alone add-on?
Thanks

Comment