You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: discretionary_engine_strategy/src/main.rs
+10-15Lines changed: 10 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -39,12 +39,11 @@ struct SubmitArgs {
39
39
//TODO!!!: allow providing a more precise primitive here (eg with Market, or with Market and Exchange); in which case it should understand that we want to skip engine suggestions for those, and for it to just accept the defined part of selection.
40
40
#[arg(short, long)]
41
41
coin:String,
42
-
/// acquisition protocols parameters, in the format of "<protocol>-<params>", e.g. "ts:p0.5". Params consist of their starting letter followed by the value, e.g. "p0.5" for 0.5% offset. If multiple params are required, they are separated by '-'.
42
+
/// protocols parameters, in the format of "<protocol>-<params>", e.g. "ts:p0.5".
43
+
/// Params consist of their starting letter followed by the value, e.g. "p0.5" for 0.5% offset. If multiple params are required, they are separated by '-'.
44
+
/// For more info, reference [CompactFormat](v_utils::macros::CompactFormat)
43
45
#[arg(short, long)]
44
-
acquisition_protocols:Vec<String>,
45
-
/// followup protocols parameters, in the format of "<protocol>-<params>", e.g. "ts:p0.5". Params consist of their starting letter followed by the value, e.g. "p0.5" for 0.5% offset. If multiple params are required, they are separated by '-'.
0 commit comments