I have a chart pattern recognition program using neural networks written in python .instead of porting the whole code to C# ,I decided it was better to only send certain bits indicating the following :
Buy=1,Sell=-1,Do nothing=0
once they are in C-sharp ,I could relay them to a third party program (multicharts) which would continuously call the C# dll function and receive these values after a certain time interval .
my question is ,is there a way to relay these bit's to C# and pack all of this in a dll ,which gets read by the 3rd party program ?
the whole reason I want to port to C# is because multicharts only reads in dll's and I don't think python has them.
sorry for being naive, I don't have very good grip on C#.