greed 0.5.2

A rust tool to automate trades 📈
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod config_provider;

use crate::asset::AssetSymbol;
use crate::error::GreedError;
use crate::strategy::runner::StrategyRunner;
use async_trait::async_trait;

#[async_trait]
pub trait StrategyRunnerProvider {
    async fn provide_strategy_runner(&self) -> Result<StrategyRunner, GreedError>;
    fn config_assets(&self) -> Vec<AssetSymbol>;
}