Flosoft Supply Demand MT5
49 USD
Demo indirildi:
96
Yayınlandı:
23 Şubat 2022
Mevcut sürüm:
1.7
Uygun bir robot bulamadınız mı?
Freelance üzerinden kendi
robotunuzu sipariş edin
Freelance'e git
Freelance üzerinden kendi
robotunuzu sipariş edin
Bir alım-satım robotu veya gösterge nasıl satın alınır?
Uzman Danışmanınızı
sanal sunucuda çalıştırın
sanal sunucuda çalıştırın
Satın almadan önce göstergeyi/alım-satım robotunu test edin
Mağazada kazanç sağlamak ister misiniz?
Satış için bir ürün nasıl sunulur?
Alım-satım fırsatlarını kaçırıyorsunuz:
- Ücretsiz alım-satım uygulamaları
- İşlem kopyalama için 8.000'den fazla sinyal
- Finansal piyasaları keşfetmek için ekonomik haberler
Kayıt
Giriş yap
Gizlilik ve Veri Koruma Politikasını ve MQL5.com Kullanım Şartlarını kabul edersiniz
Hesabınız yoksa, lütfen kaydolun

Hi, I am Jan, developer of this indicator.
Please feel free to ask me anything about this, or my other products.
Regards,
Jan
Hi Jan, indicator working great. Do you have any set up that can help me on step index or V75 index, I would appreciate any guidance, thanks.
Hi and thanks for the review :-)
To be frank I have never traded the volatility indexes so I can not really give you an adequate advice. I am so sorry. Please anyway never hesitate to contact me again with any further questions you might have. I will be glad to assist.
Best regards,
Jan
Tu use your indicator in strategy developer buffers (iCustom) would be nice! Do you see any chance to integrate that?
Hello Jan,
Tu use your indicator in strategy developer buffers (iCustom) would be nice! Do you see any chance to integrate that?
Hello and thanks for your message. You can use iCustom but not with buffers. The indicator doesn't write to buffers for pratical reasons. Technically it is of course possible to add support for buffers but I would have to redesign the indicator in some parts and a quick estimation is that it would take me 6+ hours. One more thing. Unfortunately the iCustom function only has support for the first 64 input parameters (this is by design in MT5, maybe it has been changed though in any of the latest MT5 releases). You would code like in the example below.
int icustom_handle;
in OnInit
,"EACall" //"======= TOP/BOTTOM (EXTREMUM) SETTINGS =======";
,8 // Min. amount of bars between extremums
,the rest of the input parameters down to the last one you are interested in to test, max number 64
in OnTick()
string dt=TimeToString(iTime(NULL,0,1)); // this in order to trade only on fresh signals
double supply=GlobalVariableGet("FSD-"+_Symbol+"-"+period in text format (M1,H4,D1 etc)+"-S-O"+"-"+dt);
double demand=0;
if(supply==0) demand=GlobalVariableGet("FSD-"+_Symbol+"-"+period in text format+"-D-O"+"-"+dt);
if(supply>0 || demand>0)
{
string sComment=(supply>0)? "Supply":"Demand";
sComment+= " " + PeriodToString(_Period) + " " + comment;
ENUM_ORDER_TYPE ordertype=-1;
if(supply>0) ordertype=ORDER_TYPE_SELL; else ordertype=ORDER_TYPE_BUY;
.....
OrderSend(request,result);
}
From the blog: