Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Telegram üzerinde bulun!
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Kütüphaneler

Basic Library to Create Volume Profiles - MetaTrader 5 için kütüphane

Görüntülemeler:
1117
Derecelendirme:
(4)
Yayınlandı:
2024.05.11 15:10
Güncellendi:
2024.05.11 15:30
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

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.