Guarda come scaricare robot di trading gratuitamente
Ci trovi su Twitter!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Librerie

Basic Library to Create Volume Profiles - libreria per MetaTrader 5

Visualizzazioni:
1121
Valutazioni:
(4)
Pubblicato:
2024.05.11 15:10
Aggiornato:
2024.05.11 15:30
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

This library provides a few simple public methods to create and plot Volume Profiles:

class VolumeProfile
  {
...
public:
   void              VolumeProfile(datetime _from, datetime _to);
                    ~VolumeProfile() {};
   double            GetHVPrice();
   void              Plot();
...
  };

  • GetHVPrice returns the price that is related to highest volume in the range.

Here is a sample script to instantiate and plot a desired Volume Profile:

#include <VolumeProfile.mqh>
void OnStart()
  {
      datetime from=iTime(_Symbol, PERIOD_CURRENT,50);
      datetime to=iTime(_Symbol, PERIOD_CURRENT,20);
      VolumeProfile *VP = new VolumeProfile(from, to);
      VP.Plot();
      Print(VP.GetHVPrice());
      delete VP;
  }

Volume Profile

Breakout Strategy with Prop Firm Helper Functions Breakout Strategy with Prop Firm Helper Functions

This is an update of the "Simple Yet Effective Breakout Strategy". In this code, I have added some helper functions for prop firm challenges.

Click on the market chart to create a price alert Click on the market chart to create a price alert

This is a first for MetaTrader 5. Now you can click on the chart to create price alerts.

Trap News MT5 Trap News MT5

Script For Trap News High Impact

MACD Signals MACD Signals

Indicator edition for new platform.