Page 3 of 3

Re: Strategy Runner 1.0 has been released

PostPosted: Mon Apr 08, 2019 4:25 pm
by Cactus
Is it safe to run multiple instances of this, many different strategies even on the same asset, would they crash? do strategies need a "magic number" or QTXT thing to identify them otherwise one strategy can close orders on another by accident? Do I understand this right.

Re: Strategy Runner 1.0 has been released

PostPosted: Tue Apr 09, 2019 12:10 pm
by Konstantin.Toporov
It is "safe" in terms of technical aspect, but you have to synchronize the business operations on your own.
Using QTXT and subscribing to orders/trades table events would be very useful for this purpose.

Re: Strategy Runner 1.0 has been released

PostPosted: Thu Aug 13, 2020 9:43 am
by lavolpe
Hi toporov, my strategy use "getServerTime" host command:

local serverTime = core.host:execute("getServerTime");
local serverDATA = core.dateToTable(serverTime);

but StrategyRunner return "time_provider_not_configured":

"Cannot prepare strategy: C:/Gehtsoft/StrategyRunnerSDK_x64/strategies/custom/ADXCROSS.lua:1114: time_provider_not_configured"

am i missing something?

Re: Strategy Runner 1.0 has been released

PostPosted: Fri Sep 04, 2020 1:09 am
by agolovin
Hello,

The issue has been fixed. Please, download the SR installer from here:
https://cloud.gehtsoftusa.com/s/LiRkyL4HmqzGtYJ

The getServerTime() method has been also added to the example attached.