비지연 도구 - 페이지 39

 

파란색과 빨간색 촛대에 대한 표시기가 있습니까?

파란색과 빨간색 촛대에 대한 표시기가 있습니까?

 
bigsteely101:
안녕하세요, 저는 이전 질문에 대한 답변이 거의 없었으며, 제가 설명한 전략을 사용하여 Eur/USD에서 활성화될 일부 장단기 트리거의 스크린샷을 추가할 것이라고 생각했습니다. 이것은 외환 거래를 위한 인기 있는 웹사이트입니까, 아니면 제가 문의해야 할 다른 사이트가 있습니까? MTF non-lag 이동 평균 지표가 Igorad에서 개발된 것을 고려하면 이곳이 최고의 사이트가 아닐까 생각했습니다. 유감스럽게도 저는 이 사이트에 가입한 지 얼마 되지 않아 Igorad에 직접 연락할 수 없습니다. 그래서 앞서 언급한 조건이 충족되는 경우 길고 짧은 트리거가 발생하는 위치를 보여주는 스크린샷을 첨부했습니다. 수직선(빨간색 = 짧고 녹색=긴)은 3개(가는 선) 또는 4개(굵은 선) MTF Non-lag MA 선이 같은 방향으로 움직이기 시작할 때를 나타냅니다. 추가된 스크린샷이 이 설정의 잠재력을 보여줄 수 있기를 바랍니다!!

이 표시기는 무엇입니까 plz

감사합니다

 
mrtools:
이 비 지연 황소는 경고와 함께 여러 시간대를 가지고 있으며 유용한지 여부를 결정할 수 없었습니다. 아마도 여러분 모두가 결정할 수 있습니다.

안녕하세요 mtools님.

저는 이 표시기가 매우 유용하다는 것을 알고 ea를 직접 코딩하고 있습니다. 그래서 내 질문: 당신이 나를 위해 황소와 곰 신호를 추출할 수 있습니까? 나는 그것을 내 ea에 구현하고 시도하고 싶습니다.

내 EA도 테스트하고 싶다면 오후에 링크를 보내 드리겠습니다.

문안 인사,

반작

 
banzak:
안녕하세요 mtools님.

저는 이 표시기가 매우 유용하다는 것을 알고 ea를 직접 코딩하고 있습니다. 그래서 내 질문: 당신이 나를 위해 황소와 곰 신호를 추출할 수 있습니까? 나는 그것을 내 ea에 구현하고 시도하고 싶습니다.

내 EA도 테스트하고 싶다면 오후에 링크를 보내 드리겠습니다.

문안 인사,

반작

안녕하세요 Banzak님.

바라건대 내가 올바르게 이해했으며 mtf 및 경고를 제거 했습니다.

파일:
 
mrtools:
안녕하세요 Banzak, 잘 이해했길 바랍니다. mtf 및 경고를 제거했습니다.

안녕하세요 mtools님.

이 지표를 내 ea에 직접 구축하고 싶습니다. 그래서 제 질문은

nlm = iNonLagMa(iMA(NULL,0,1,0,MODE_SMA,BullBearPrice,i),BullBearPeriod,i,0);

bears = nlm - Low;

bulls = High - nlm;

trend = trend;

if (bulls > bears) trend = 1;

if (bulls < bears) trend =-1;[/CODE]

and adapt it only for the actual value - this only 50%, cause in the

double iNonLagMa(double price, double length, int r, int instanceNo=0)

-function there is a lot of stuff I didn't really unterstand at the moment..

The code above it's a normal calculation for bears & bulls. It's look in my ea like this:

[CODE]//+------------------------------------------------------------------+

// Function Bears_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BearsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bears_Get(string symbol,int timeframe,int BearsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bears;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BearsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bears = iLow(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bears);

//+-- End of Result

}

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

// Function Bulls_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BullsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bulls_Get(string symbol,int timeframe,int BullsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bulls;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BullsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bulls = iHigh(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bulls);

//+-- End of Result

}

//+------------------------------------------------------------------+

내가 필요한 것은 Nonlag로 확장하는 것입니다 ...

문안 인사,

반작

 
banzak:
안녕하세요 mtools님.

이 지표를 내 ea에 직접 구축하고 싶습니다. 그래서 제 질문은

nlm = iNonLagMa(iMA(NULL,0,1,0,MODE_SMA,BullBearPrice,i),BullBearPeriod,i,0);

bears = nlm - Low;

bulls = High - nlm;

trend = trend;

if (bulls > bears) trend = 1;

if (bulls < bears) trend =-1;[/CODE]

and adapt it only for the actual value - this only 50%, cause in the

double iNonLagMa(double price, double length, int r, int instanceNo=0)

-function there is a lot of stuff I didn't really unterstand at the moment..

The code above it's a normal calculation for bears & bulls. It's look in my ea like this:

[CODE]//+------------------------------------------------------------------+

// Function Bears_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BearsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bears_Get(string symbol,int timeframe,int BearsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bears;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BearsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bears = iLow(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bears);

//+-- End of Result

}

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

// Function Bulls_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BullsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bulls_Get(string symbol,int timeframe,int BullsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bulls;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BullsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bulls = iHigh(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bulls);

//+-- End of Result

}

//+------------------------------------------------------------------+

내가 필요한 것은 Nonlag로 확장하는 것입니다 ...

문안 인사,

반작

Banzak, 조언을 제공할 만큼 충분히 알고 있지만 확신할 수 없을 정도로 Ea에서 작동하는 방식은 나에게 트렌드 버퍼 >< 0을 사용하여 지표를 호출하는 것이 훨씬 쉽습니다.

 
mrtools:
Banzak, 조언을 제공할 만큼 충분히 알고 있지만 확신할 수 없을 정도로 Ea에서 작동하는 방식은 나에게 트렌드 버퍼 >< 0을 사용하여 지표를 호출하는 것이 훨씬 쉽습니다.

안녕하세요 선생님,

pls는 파란색과 노란색 선이 서로 교차할 때 이 표시기에 화살표를 원합니다.

파일:
 

누군가가 non-lag histo에 방법/모드를 추가할 수 있습니까?

빠른 시도를했지만 아무 것도 변경되지 않으므로 어딘가에서 약간 누락되어야합니다.

정말 감사합니다

nonlag_ma_histo_mtfalerts.mq4

 

추가 모드 (내 생각에)

순서에 모드가 있었고 큰 차이는 없지만 항상 시도해 볼 가치가 있습니다.

nonlag_ma_histo_mtfalerts.1.mq4

 

Mr Tools님, 감사합니다.

내 시스템의 마지막 인디를 찾으려고

그런 다음 코딩을 배우려고 노력할 것입니다.