golden 0.1.5

All in one trading engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use async_trait::async_trait;
use clap::{ArgMatches, Command as ClapCommand};
use crate::cmds::Command;

pub struct LiveTradingCommand;

#[async_trait]
impl Command for LiveTradingCommand {
    fn usage() -> ClapCommand {
        ClapCommand::new("live")
            .about("Live trading")
            .visible_alias("l")
    }

    async fn handler(_m: &ArgMatches) -> anyhow::Result<()> {
        todo!()
    }
}