Neo traderBot

Neo traderBot

Você sabia?

A NeoTraderBot é a primeira comunidade aberta no Brasil com foco em compartilhar informações sobre automatização de estratégias

leaf leftleaf right
Notifications
Clear all

Atuar na somente na venda se a ultima compra foi stopada

1 Posts
1 Usuários
0 Reactions
159 Visualizações
(@ajaxme)
Novo membro
Registrou: 8 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