some questions or new features #130
-
Here are some questions or new features
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @davidxiao
I will include a new feature soon, strategies will have access to partial candles, with this feature will be easy to create this tool.
The pooling is very optimized, we fetch data only when the bot have
Its very complex to provide multiple timeframes for a given strategy, you can use a small timeframe and resample it in the
You can use OrderFeeds and subscribe it in the ninjabot type OrderSubscriber interface {
OnOrder(model.Order)
}
I will try to create an isolated frontend with more features, such as custom indicatos, real-time charts, but it is in the roadmap. You can subscribe for update here: #124 |
Beta Was this translation helpful? Give feedback.
-
awesome, mate, Yeah, agreed thanks very much, pls let me know if there is anything I can do, |
Beta Was this translation helpful? Give feedback.
Hi @davidxiao
I will include a new feature soon, strategies will have access to partial candles, with this feature will be easy to create this tool.
The pooling is very optimized, we fetch data only when the bot have
NEW
,PENDING
, andPARTIAL FILLED
orders in the storage. But we can include this feature, but it is not a priority for now.Its very complex…