내 EA에서 어떻게 연결하나요?
가능한 경우 예제 코드!!!
메신저 또는 SMS 또는 전화로 알림을 보내도록 BrainTrend2Sig를 구성하는 방법을 알려주시겠습니까?
미리 감사드립니다.
흥미로운 지표입니다. 하지만 '모든 변수'는 보이지 않고 하나만 보입니다. 두 개는 제가 직접 (상수에서) 뽑아낸 것입니다.
이를 기반으로 하위 창에 대한 화살표가 아닌 지표를 게시할 계획이 있으신가요?
안녕하세요 좋은 아침, 사용자 정의 EA에서 지표를 사용하려고합니다. mt4에서는 완벽하게 작동하지만 mt5에서는 동일한 작업을 수행하는 데 어려움이 있으며 mt4에서는이 방법으로 지표를 호출하고 작동했습니다:
Hello good morning, I'm trying to use the indicator in a custom EA. In mt4 it works perfectly, but in mt5 I have difficulty doing the same, in mt4 I call the indicator this way and it has worked: // Chama a função iCustom para obter o valor da seta azul redArrowValue = iCustom(Symbol(), Period(), "BT2", 0, 0); // Chama a função iCustom para obter o valor da seta vermelha blueArrowValue = iCustom(Symbol(), Period(), "BT2", 1, 0); // Condição de venda: Preço acima da linha de cima e sinal de venda no BT2 if(!HasOpenPositions(Symbol(), MagicNumber) && CheckStartMarket() && currentPrice > upBuffer && redArrowValue == 1 && blueArrowValue > 0 && previousOpen > upBuffer) { SellOrder(TakeProfit, StopLoss); partialCloseActivated = false; breakevenActivated = false; Alert("Venda efetuada!"); } // Condição de compra: Preço abaixo da linha de baixo e sinal de compra no BT2 if(!HasOpenPositions(Symbol(), MagicNumber) && CheckStartMarket() && currentPrice < dnBuffer && blueArrowValue == 2 && redArrowValue > 0 && previousOpen < dnBuffer) { BuyOrder(TakeProfit, StopLoss); partialCloseActivated = false; breakevenActivated = false; Alert("Compra efetuada!"); } }
브레인트렌드2시그:
브레인트렌드2시그는 시장에서 활성화된 추세 추세를 나타내는 지표로, 추세 방향에 따라 캔들에 색을 입힙니다.
Author: Nikolay Kositsin