Lesson 7 Price action Ket hop Volume VSA – EA MetaTrader 5

Lesson 7 Price action Ket hop Volume VSA - expert for MetaTrader 5
I. Main function 1. Auto caculate lot size 2. Auto trailling ATR 3. Using volume indicator and moving average indicator 4. Condition buy or sell 2. Backtest. II. Main function code 1. Volume indicator declaration //+——————————————————————+ //| Expert initialization function                                   | //+——————————————————————+ int OnInit()   { if(!m_symbol.Name(_Symbol)) return  INIT_FAILED; // Set Trade parameter trade.SetTypeFillingBySymbol(m_symbol.Name()); trade.SetExpertMagicNumber(m_magicnumber); trade.SetDeviationInPoints(Slippage); // … Read more

The VSA Text – indicator MetaTrader 4

The VSA Text - indicator for MetaTrader 4
Author: chayutra sriboonruang The indicator is base on “volume spared analysis”. It shows the vertical text to indicate upthrust, no demand bar, stopping volume, no supply bar reverse upthrust. The indicator should use together with any kind of volume indicator and the support and resistance indicator. The external input parameters SpreadPeriod : this is for … Read more

Another VSA indi. – indicator MetaTrader 4

Another VSA indi. - indicator for MetaTrader 4
VSA is about reading the market and mapping it out to give you a better understanding of what it might do next. Bars info: YellowGreen: We can have increasing spread and increasing volume -strong participation and price should continue in this direction. Red: We can have decreasing spread and increasing volume-direction move may be losing … Read more

VSA Syndicate Trader v1.04 – EA MetaTrader 4

Syndicate Trader is coded from the basic VSA (Volume Spread Analysis) study by Wyckoff.
Syndicate Trader is coded from the basic VSA (Volume Spread Analysis) study by Wyckoff. EA will identify potential No Demand and No Supply strike zones and excecute buy or sell market orders (Instant execution). The robot will trail the profits. Extern parameters are available for different set files. I welcome any further input from proffessional … Read more