거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

Stochastic Moving Average - MetaTrader 4용 지표

조회수:
651
평가:
(1)
게시됨:
업데이트됨:
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

This indicator is an implementation of Stochastic of Moving Average.

This indicator can be used as a filter indicator.

It can be associated with my free indicator "HLPeak_Trend".

Stochastic_MA

The logic is implemented as Class, so you can copy and paste in your Expert Advisor code without using the function iCustom().

Use the class function ".Update(int shift)" to run or update the indicator class.

Usually use shift=0 in Expert Advisor.


Class Input Parameters:

   int   parPeriod;        // Period

   int   parKPeriod;       // K Period

   int   parDPeriod;       // D Period

   int   parSlowingPeriod; // Slowing Period

   ENUM_APPLIED_PRICE   parPrice;   // Applied Price

   

Class Output Buffers: (index 0=current, 1=previous)

   double bufStoc[];    // Stochastic

   double bufStoK[];    // Stochastic K line

   double bufStoD[];    // Stochastic D line

   int    bufStoDir[];  // Direction (2=Strong Up, 1=Weak Up, -1=Weak Down, -2=Strong Down)


Inside Bar Inside Bar

Automatically detect Inside Bar patterns, draw projection rectangles, and receive real‑time alerts – all in one powerful indicator. Swing And Full Margin trader

fair value gap/imbalance fair value gap/imbalance

Dynamic Fair Value Gap (FVG) is an MQL5 indicator for MetaTrader 4 that automatically detects market price imbalances. This indicator is perfectly suited for traders utilizing the Smart Money Concepts (SMC) strategy.

Three Colors Three Colors

Example: Moving Average indicator filling by different colors

MACD Sample MACD Sample

Classical MACD Sample.