Neo traderBot

Neo traderBot

Você sabia?

Um backtesting adequado deve buscar simular situações práticas do mercado (slippage, custo de operação, etc...)

leaf leftleaf right
Notifications
Clear all

Atuar na somente na venda se a ultima compra foi stopada

1 Posts
1 Usuários
0 Reactions
200 Visualizações
(@ajaxme)
Novo membro
Registrou: 12 meses atrás
Posts: 1
Iniciador do tópico  
//// Gostaria de atuar somente na venda se a compra foi stopada e vice versa. 

input
stop(40);
alvo(40);
begin
se(not IsSold) e (not IsBought) então inicio
se(fechamento>abertura) então inicio
BuyAtMarket;
end;
se(fechamento<abertura) então inicio
SellShortAtMarket;
end;
end;
se(IsBought) então inicio
    SellToCoverLimit(BuyPrice+alvo);
    SellToCoverStop(BuyPrice-alvo);
end;
se(IsSold) então inicio
     BuyToCoverLimit(SellPrice-alvo);
    BuyToCoverStop(SellPrice+alvo);
end;


end;

   
Citar