You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package strategy |
|
|
|
// IExchangesSigStrategy 多交易所策略 |
|
type IExchangesSigStrategy interface { |
|
ISigStrategy |
|
} |
|
|
|
// IExchangesIntervalsStrategy 多交易所多周期策略 |
|
type IExchangesIntervalsStrategy interface { |
|
ISigStrategy |
|
}
|
|
|