Version simple de l'ordre iceberg de vente
3
Follow
1507
Followers
Very simple, just for learn. Code is best annotation.
Vente par ordre iceberg, divisant l'ordre en petites ventes pour éviter l'impact sur le marché, est une excellente stratégie d'apprentissage simple pour débuter le trading quantitatif du Bitcoin.
Source
JavaScript
function main(){
var initAccount = _C(exchange.GetAccount)
if (initAccount.Stocks < SELLAMOUNT){
throw 'check your account amount to sell'
}
while(true){
var account = _C(exchange.GetAccount)
var dealAmount = initAccount.Stocks - account.Stocks
var ticker = _C(exchange.GetTicker)
if(SELLAMOUNT - dealAmount > SELLSIZE){
var id = exchange.Sell(ticker.Buy, SELLSIZE)
Sleep(INTERVAL*1000)Strategy parameters
Related strategies
Comment
All comments (1)
- 1
