Metatrader 5의 표준 지표를 기반으로 한 시장 상황 평가 - 페이지 228

 
Sergey Golubev :

그것은 창조되었다:

- 경고 모드에 대한 경고가 수정되었습니다. 게다가 - 초 단위로 일시 중지 및 신호 후 경고 수를 지정할 수 있습니다(경고 경고에만 해당)

- AutoPeriodsDetect 매개변수가 추가되었습니다. 표시기는 H1 및 더 작은 시간 프레임을 9/26/52로, 그리고 H2 및 더 큰 기간은 72/144/288로 자동 설정 됩니다. 따라서 관련 설정에서 아무 것도 변경할 필요가 없습니다.

지금 지표를 테스트 중입니다.

추신. 표시기가 업로드되었으며 이 '링크 게시물'이 수정되었습니다.

최신 버전이 있습니다. 사용해 보시겠습니까?

 
GodAtum :

최신 버전이 있습니다. 사용해 보시겠습니까?

어떤 게시물?
여기에 228 페이지가 있기 때문에 ...

 
Sergey Golubev :

어떤 게시물?
여기에 228 페이지가 있기 때문에 ...

https://www.mql5.com/en/forum/9773/page55#comment_540972

v11이 있습니다, 그것은 최신입니까?

Market Condition Evaluation based on standard indicators in Metatrader 5
Market Condition Evaluation based on standard indicators in Metatrader 5
  • 2013.07.05
  • www.mql5.com
I just started this thread as a continuation of the talking made on this topic (we can read it). Or...
 

예, 찾았습니다 - 게시물 #547

지금 확인하겠습니다(오류 없이 최신 버전이어야 합니다...하지만 확인하겠습니다).

 

MetaEditor에서 오류 없이 컴파일되었습니다(그래서 최신 버전인 것 같습니다) -


 

설정/매개변수 -

 input int       Tenkan            =     9 ;     // Tenkan-sen
input int       Kijun             =     26 ;     // Kijun-sen
input int       Senkou            =     52 ;     // Senkou Span B
input bool      AutoPeriodsDetect =   true ;
input int       SignalMode        =     4 ;     // Signal Mode: 0-off,1-Tenkan/Kijun,2-Chinkou/Cloud,3-Chinkou/Price,4-all together
input int       AlertMode         =     4 ;     // Alert Mode: 0-off,1-Tenkan/Kijun,2-Chinkou/Cloud,3-Chinkou/Price,4-all together
input int       WarningMode       =     1 ;     // Warning Mode: 0-off,1-on
input int       SoundsNumber      =     1 ;     // Number of sounds after Signal
input int       SoundsPause       =     5 ;     // Pause in sec between sounds 
input string    UpSound           = "alert.wav" ;
input string    DnSound           = "alert2.wav" ;

거래, 자동 거래 시스템 및 거래 전략 테스트에 관한 포럼

Metatrader 5의 표준 지표를 기반으로 한 시장 상황 평가

세르게이 골루베프 , 2013.07.09 17:13

그것은 창조되었다:

- 경고 모드에 대한 경고가 수정되었습니다. 게다가 - 초 단위로 일시 중지 및 신호 후 경고 수를 지정할 수 있습니다(경고 경고에만 해당)

- AutoPeriodsDetect 매개변수가 추가되었습니다. 표시기는 H1 및 더 작은 시간 프레임을 9/26/52로, 그리고 H2 및 더 큰 기간은 72/144/288로 자동 설정 됩니다. 따라서 관련 설정에서 아무 것도 변경할 필요가 없습니다.

...

 void OnInit ()
{
   if ( Period () <= PERIOD_H1 && AutoPeriodsDetect)
   {
   tenkan = 72 ; kijun = 144 ; senkou = 288 ;   
   }
   else
   {
   tenkan = Tenkan; kijun = Kijun; senkou = Senkou;
   }
 

작동하지만 차트의 모든 과거 신호를 유지하므로 이 경우에도 지표를 수정해야 합니다.


 

이것은 매우 흥미로운 EA입니다 -

----------------

Hammer_v1 - MetaTrader 5 전문가

Hammer_v1 - MetaTrader 5 전문가

This advisor is an advisor assistant in manual trading. Powered by rebound from levels. The levels here are the horizontal line objects that the user draws manually on the chart. It is allowed to use one object for opening BUY positions and one for opening SELL positions. The main thing is that the names of the objects Horizontal lines correspond to the specified parameters HLine Buy Level name and HLine Sell Level name .

현재 가격이 HLine 객체보다 높을 때 Sell Level 이름은 SELL 포지션을 여는 신호입니다. 동시에 객체 HLine Sell Level name ABOVE를 HLine의 단계 핍으로 이동합니다. 현재 가격이 HLine Buy Level 객체보다 낮을 때 유사한 방식으로 행동합니다. 이름은 매수 포지션을 여는 신호입니다. 동시에 HLine의 Step pips에서 HLine 개체 Buy Level LevelBELOW를 이동합니다.

 
Sergey Golubev :

안녕하세요, sergey, 연간 기준점을 알 수 있습니까? 제발
 
OrelMely :
안녕하세요, sergey, 연간 기준점을 알 수 있습니까? 제발

어느 연도의 중심점은?
내 Metatrader에는 많은 지표가 있으며 나는 코더가 아닙니다 ...