Need solutions to Forex order_send in Python. using Metatrader5 its so easy:
import MetaTrader5 as mt5
request = {
"action": mt5.TRADE_ACTION_DEAL,
"symbol": symbol,
"volume": lot,
"type": trade_type,
"price": price,
"tp": tp,
"sl": sl,
}
result = mt5.order_send(request)
But for some reason I only have one Linux server now. My attempts to install MetaTrader 5 were completely unsuccessful (even after trying the Windows emulator).
Is there a way to Send my forex orders without using Metatrader5?
Thank you all