There are many threads about modeling in python and using IB API for trading, i'm exploring other solutions to benefit from different trading platforms. What is the recommend method to deploy a trading system coded in python for trading futures apart from IB? the model use machine learning algorithms and other custom indicators to calculate trading signals (only 3 - 4 instruments) :
1- Using python functions for model calculation and integrate it via TT API (X_TRADER) for live trading.
2- Converting the developed models (including trained machine learning algorithms) from python to C# then use them as custom indicators under Ninjatrader for an automated strategy?
3- Convert the models to DLL library then call it from Ninjatrader / Multiucharts .NET platforms.
The frequency of trading is 1 min period or longer and tick data are used to calculate custom indicators. Best solution is the one that has the advantage of execution speed, risk management and the ability to deploy new "python" models quickly either directly or after conversion. Thank you.
1- Using python functions for model calculation and integrate it via TT API (X_TRADER) for live trading.
2- Converting the developed models (including trained machine learning algorithms) from python to C# then use them as custom indicators under Ninjatrader for an automated strategy?
3- Convert the models to DLL library then call it from Ninjatrader / Multiucharts .NET platforms.
The frequency of trading is 1 min period or longer and tick data are used to calculate custom indicators. Best solution is the one that has the advantage of execution speed, risk management and the ability to deploy new "python" models quickly either directly or after conversion. Thank you.