1
Follow
0
Followers
このコードにはちょっとした疑問があります: 管理者は,goで書かれたサーバーメッセージを受け取って,新しいロボットを起動します.exec.Command--fork は,子プロセスが実行されていることを認識していますか?
理想的には,go を実装するホストは,go 言語の記述を提供して,プラグインを生成し,ホストは,ローカルにポリシーを更新し,ロボットをロードします.
func RunStrategy(){
...
p, err := plugin.Open("./logs/plugin/strategy_XXXXX.so")
if err != nil {
panic(err)
}
main, err := p.Lookup("StrategyMain")
main.(func())()
...
}
Related Recommendations
How to Specify Different Versions of Data for the Rented Strategy by Its Rental Code MetadataAdvanced Tutorial for FMZ Quant platform Strategy WritingElementary Tutorial for FMZ Quant platform Strategy WritingGet Started with FMZ Quant PlatformSECURITY BUGI keep getting error: Exchange_GetAccount: Invalid ContractTypeWe have an incredibly profitable market making algorithm for sideways markets on Bitmex - but need expert to help eliminate wait times during downward volatility in the marketError with deribitLimitations of the backtesting engineHow to install ta-lib on linux docker?
Comment
All comments (1)
- 1
