首页 > 其他分享 >供需指标(Supply and Demand ),供给与需求,寻找支撑压力位神器 MT4免费公式!

供需指标(Supply and Demand ),供给与需求,寻找支撑压力位神器 MT4免费公式!

时间:2024-10-31 16:44:37浏览次数:3  
标签:hud Supply color MT4 int bool Demand extern btn

指标名称:供给需求指标

版本:MT4 ver. 2.01

供需区域指标基于市场的支撑区和阻力区,非常适合用于外汇交易。这一指标将市场供应和需求的区域划分为更广泛的价格范围,有助于识别长期有效的交易区域。

使用指南

  • - 供需区域定义:供应区通常形成于价格急剧下跌后,显示出卖压强劲;需求区则形成于价格急剧上涨后,显示出购买兴趣强烈。

  • - 交易策略:在供应区域考虑卖出,在需求区域考虑买入。价格触及这些区域时,通常会见到相应的反弹,交易者可以利用这种可预测性进行交易。

适用对象

  • 新手交易者:如果你难以识别单一的支撑位和阻力位,这个指标可能会更有用。

  • 专业交易者:虽然专业交易者可能已经能够独立绘制这些区域,但指标的高准确性仍然使其成为分析供需关系时的有力工具。

区域类型

  • 新区域:最近形成且未经测试的区域,由于未完成订单而被视为强势区域。

  • 已测试区域:已被价格测试的区域,仍然相关但其影响力可能随时间减弱。


与支撑位和阻力位的区别

供需区域覆盖的是更广泛的价格范围,基于交易量和市场走势,因此比单一的支撑位和阻力位具有更长期的意义,而后者则通常由历史价格触及决定,更适合短期交易。

优点

  - 准确性:基于实际市场活动的更可靠的进入/退出点。

  - 持久性:随着时间的推移保持相关性,有助于长期交易规划。

参数:

时间范围:选择您想要在当前图表上查看其区域的时间范围。

DrawZones:设置为“false”时,从图表中删除所有区域。

SolidZones:向区域添加或删除颜色。

SolidRetouch:添加或删除已修饰区域的颜色。

RecolorRetouch:让修饰过的区域获得新的颜色。

RecolorWeakRetouch:让弱修饰区域获得新的颜色。

ZoneStrength:图表上没有明显影响。

NoWeakZones:这可让您添加或删除弱区域。

DrawEdgePrice:将货币对价格置于每个区域的边缘。

ZoneWidth:对图表没有明显影响。

ZoneFibs:当与“HUDOn”一起设置为“true”时,在图表右端显示斐波那契回撤工具。

FibStyle:图表上没有明显效果。

HUDOn:在图表左下角放置一个三角形,该三角形是直立的还是倒立的,取决于两个区域内的价格方向。

TimerOn:图表上没有明显效果。

LayerZone:图表上没有明显效果。

LayerHUD:图表上没有明显效果。

CornerHUD:描述应显示HUD的位置。

PosX:改变HUD的位置。

PosY:改变HUD的位置。

AlertOn:当区域形成时提醒您。

AlertPopup:显示警报弹出窗口。

ColorSupStrong:改变强供给区的颜色。

ColorSupWeak:改变弱供应区的颜色。

ColorSupRetouch:改变修饰后的供给区的颜色。

ColorDemStrong:改变强需求区域的颜色。

ColorDemWeak:改变弱需求区域的颜色。

ColorDemRetouch:改变修饰需求区域的颜色。

ColorFib:改变斐波那契回撤的颜色。

ColorHUDTF:改变HUD的颜色。

ColorArrowUp:改变向上箭头的颜色。

ColorArrowDn:改变向下箭头的颜色。

ColorTimeBack:改变时间回溯颜色。

ColorTimerBar:更改计时器栏颜色。

ColorShadow:改变阴影颜色。

LimitZoneVis:图表上没有明显效果。

SameTFVis:图表上没有明显效果。

ShowOnM1:图表上没有明显效果。

ShowOnM5:图表上没有明显效果。

ShowOnM15:图表上没有明显效果。

ShowOnM30:图表上没有明显效果。

ShowOnH1:图表上没有明显效果。

ShowOnD1:图表上没有明显效果。

ShowOnW1:图表上没有明显效果。

ShowOnMN:图表上没有明显效果。

PriceWidth:图表上没有明显影响。

TimeOffset:图表上没有明显影响。

GlobalVars:图表上没有明显影响。

部分代码展示:

//+------------------------------------------------------------------+//|                                                    Supply Demand.mq4 |//|                             #property version   "2.01"
#property description "---------------------------------------------"#property description "EA、指标公式分享"#property description "EA、#property description "---------------------------------------------"#property description #property description #property description #property description "---------------------------------------------"#property indicator_chart_window#property indicator_buffers 2
//AHTF Timeframe template copy and paste start11enum enTimeFrames{   tf_cu  = PERIOD_CURRENT, // Current time frame   tf_m1  = PERIOD_M1,      // 1 minute   tf_m5  = PERIOD_M5,      // 5 minutes   tf_m15 = PERIOD_M15,     // 15 minutes   tf_m30 = PERIOD_M30,     // 30 minutes   tf_h1  = PERIOD_H1,      // 1 hour   tf_h4  = PERIOD_H4,      // 4 hours   tf_d1  = PERIOD_D1,      // Daily   tf_w1  = PERIOD_W1,      // Weekly   tf_mn1 = PERIOD_MN1,     // Monthly   tf_n1  = -1,             // First higher time frame   tf_n2  = -2,             // Second higher time frame   tf_n3  = -3,             // Third higher time frame   tf_n4  = -4              // Fourth higher time frame};//AHTF Timeframe template copy and paste end11
//AHTF Timeframe template copy and paste start12extern enTimeFrames    TimeFrame            = tf_cu;            // Time frame//AHTF Timeframe template copy and paste end12
extern bool            draw_zones           = true;extern bool            solid_zones          = true;extern bool            solid_retouch        = true;extern bool            recolor_retouch      = true;extern bool            recolor_weak_retouch = false;extern bool            zone_strength        = true;extern bool            no_weak_zones        = true;extern bool            draw_edge_price      = true;extern color           edge_price_color     = clrDarkGray; extern int             zone_width           = 1;extern bool            zone_fibs            = false;extern int             fib_style            = 0;extern bool            HUD_on               = false;extern bool            timer_on             = false;extern int             layer_zone           = 0;extern int             layer_HUD            = 20;extern int             corner_HUD           = 2;extern int             pos_x                = 100;extern int             pos_y                = 20;extern bool            alert_on             = false;extern bool            alert_popup          = false;extern string          alert_sound          = "alert.wav";extern color           color_sup_strong     = clrIndianRed;extern color           color_sup_weak       = clrOlive;extern color           color_sup_retouch    = clrSandyBrown;extern color           color_dem_strong     = clrSteelBlue;extern color           color_dem_weak       = clrLightSteelBlue;extern color           color_dem_retouch    = clrLightSteelBlue;extern color           color_fib            = clrDodgerBlue;extern color           color_HUD_tf         = clrDimGray;extern color           color_arrow_up       = clrSeaGreen;extern color           color_arrow_dn       = clrCrimson;extern color           color_timer_back     = clrDarkGray;extern color           color_timer_bar      = clrRed;extern color           color_shadow         = clrDarkSlateGray;
extern bool            limit_zone_vis       = false;extern bool            same_tf_vis          = true;extern bool            show_on_m1           = false;extern bool            show_on_m5           = true;extern bool            show_on_m15          = false;extern bool            show_on_m30          = false;extern bool            show_on_h1           = false;extern bool            show_on_h4           = false;extern bool            show_on_d1           = false;extern bool            show_on_w1           = false;extern bool            show_on_mn           = false;
extern int             Price_Width          = 1;
extern int             time_offset          = 0;
extern bool            globals              = false;
//Forex-Station button template start41; copy and pasteextern string             button_note1_         = "------------------------------";extern int                btn_Subwindow         = 0;                               // What window to put the button on.  If <0, the button will use the same sub-window as the indicator.extern ENUM_BASE_CORNER   btn_corner            = CORNER_LEFT_UPPER;               // button corner on chart for anchoringextern string             btn_text              = "S&R";                           // a button nameextern string             btn_Font              = "Arial";                         // button font nameextern int                btn_FontSize          = 9;                               // button font size               extern color              btn_text_ON_color     = clrLime;                         // ON color when the button is turned onextern color              btn_text_OFF_color    = clrRed;                          // OFF color when the button is turned offextern color              btn_background_color  = clrDimGray;                      // background color of the buttonextern color              btn_border_color      = clrBlack;                        // border color the buttonextern int                button_x              = 20;                              // x coordinate of the button     extern int                button_y              = 25;                              // y coordinate of the button     extern int                btn_Width             = 80;                              // button widthextern int                btn_Height            = 20;                              // button heightextern string             UniqueButtonID        = "SupplyDemandZones";                   // Unique ID for each button        extern string             button_note2          = "------------------------------";
bool show_data, recalc=false;string IndicatorObjPrefix, buttonId;
double BuferUp1[];double BuferDn1[];
double sup_RR[4];double dem_RR[4];double sup_width,dem_width;
string l_hud,l_zone;int HUD_x;string font_HUD = "Arial";int font_HUD_size = 20;string font_HUD_price = "Arial Bold";int font_HUD_price_size = 12;int arrow_UP = 0x70;int arrow_DN = 0x71;string font_arrow = "WingDings 3";int font_arrow_size = 40;int font_pair_size = 8;

string arrow_glance;color color_arrow;int visible;int rotation=270;int lenbase;string s_base="|||||||||||||||||||||||";string timer_font="Arial Bold";int size_timer_font=8;
double min,max;double iPeriod[4] = {3,8,13,34}; int Dev[4] = {2,5,8,13};int Step[4] = {2,3,5,8};datetime t1,t2;double p1,p2;string pair;double point;int digits;int tf;string TAG;
double fib_sup,fib_dem;int SupCount,DemCount;int SupAlert,DemAlert;double up_cur,dn_cur;double fib_level_array[13]={0,0.236,0.386,0.5,0.618,0.786,1,1.276,1.618,2.058,2.618,3.33,4.236};string fib_level_desc[13]={"0","23.6%","38.6%","50%","61.8%","78.6%","100%","127.6%","161.8%","205.8%","261.80%","333%","423.6%"};
int hud_timer_x,hud_timer_y,hud_arrow_x,hud_arrow_y,hud_tf_x,hud_tf_y;int hud_sup_x,hud_sup_y,hud_dem_x,hud_dem_y;int hud_timers_x,hud_timers_y,hud_arrows_x,hud_arrows_y,hud_tfs_x,hud_tfs_y;int hud_sups_x,hud_sups_y,hud_dems_x,hud_dems_y;//+------------------------------------------------------------------------------------------------------------------+//Forex-Station button template start42; copy and pasteint OnInit(){   IndicatorDigits(Digits);   IndicatorObjPrefix = "__" + btn_text + "__";         // The leading "_" gives buttonId a *unique* prefix.  Furthermore, prepending the swin is usually unique unless >2+ of THIS indy are displayed in the SAME sub-window. (But, if >2 used, be sure to shift the buttonId position)   buttonId = "_" + UniqueButtonID + IndicatorObjPrefix + "_BT_";   if (ObjectFind(buttonId)<0)       createButton(buttonId, btn_text, btn_Width, btn_Height, btn_Font, btn_FontSize, btn_background_color, btn_border_color, btn_text_ON_color);   ObjectSetInteger(0, buttonId, OBJPROP_YDISTANCE, button_y);   ObjectSetInteger(0, buttonId, OBJPROP_XDISTANCE, button_x);
   init2();
   show_data = ObjectGetInteger(0, buttonId, OBJPROP_STATE);   if (show_data) ObjectSetInteger(0,buttonId,OBJPROP_COLOR,btn_text_ON_color);    else ObjectSetInteger(0,buttonId,OBJPROP_COLOR,btn_text_OFF_color);   return(INIT_SUCCEEDED);}


 

标签:hud,Supply,color,MT4,int,bool,Demand,extern,btn
From: https://blog.csdn.net/pioneer_plus/article/details/143361493

相关文章

  • Unity性能优化-降低功耗,发热量,耗电量之OnDemandRendering篇
    公司游戏项目,手机运行严重发烫,耗电量飞快。在暂时无法做其他美术性和技术性优化的情况下,我写了这个公司内部文档,并做了个实验,今天干脆公布出来,希望对大家有用。 --官方文档:Unity-ScriptingAPI:OnDemandRendering--Youtube讲解:https://www.youtube.com/watch?v=RYgWn6jbt......
  • MGMT42110: Marketing Analytics
    MGMT42110:MarketingAnalyticsHomework2(7points)Instructions1. Download“42110_hw2_template.R”andfillinthecommandwherevernecessarytocompletethehomework.2. Copyandpasteyourcodedirectlyintothisdocumentwheneverasked.Youdonotne......
  • 一文搞定高并发编程:CompletableFuture的supplyAsync与runAsync
    CompletableFuture是Java8中引入的一个类,用于简化异步编程和并发操作。它提供了一种方便的方式来处理异步任务的结果,以及将多个异步任务组合在一起执行。CompletableFuture支持链式操作,使得异步编程更加直观和灵活。在引入CompletableFuture之前,Java已经有了Future接口来......
  • Keysight U8031A DC power supply
    KeysightU8031ADCpowersupply文章目录KeysightU8031ADCpowersupply前言电容充电⽰意图一、恒定电压操作二、恒定电流操作三、5v操作四、跟踪模式操作五、存储器操作六、对过电压保护编程七、对过电流保护编程八、锁键操作前言U8031APowerSupply是一款......
  • 将 TradingView 电子邮件信号连接至 MT4
    我对编码了解不多,但我尝试进行一些研究。我想在MT4上启用TradingView电子邮件信号,但尽管正在阅读电子邮件,但它们并未在MT4上执行。如果您能帮助我,我将非常高兴。importimaplibimportemailimportzmqimportrandomimportdatetime,timefromemail.headerimport......
  • 关于FPGA对 DDR4 (MT40A256M16)的读写控制 3
    关于FPGA对DDR4(MT40A256M16)的读写控制3语言:VerilgHDL、VHDLEDA工具:ISE、Vivado、QuartusII关于FPGA对DDR4(MT40A256M16)的读写控制3一、引言二、DDR的功能性描述三、SDRAM设备中模式寄存器的可编程性四、重要的模式寄存器之MR0(1)BurstLength、Type、Order......
  • 关于FPGA对 DDR4 (MT40A256M16)的读写控制 I
    关于FPGA对DDR4(MT40A256M16)的读写控制I语言:VerilgHDLEDA工具:ISE、Vivado关于FPGA对DDR4(MT40A256M16)的读写控制I一、引言二、DDR4的特性(MT40A256M16)(1)电压和电源管理(2)内部参考电压生成(3)命令/地址延迟(CAL)(4)写入均衡(WriteLeveling)(5)自刷新模式(SelfRef......
  • 供应链安全论文阅读(一)Backstabber's Knife Collection: A Review of Open Source Soft
    引言该论文Backstabber'sKnifeCollection:AReviewofOpenSourceSoftwareSupplyChainAttacks发表在2020年的DIMVA上,作者为波恩大学的MarcOhm。本文是开源软件供应链安全领域较早期的一篇论文,主要针对软件供应链中恶意软件包的威胁进行了详细介绍。首先简单介绍一下软......
  • CF107A Dorm Water Supply 题解
    题目简述给出一个$n$个点,$m$条边的有向图,边带权。保证每个点的出度和入度最多为$1$。对于每一个入度为$0$,出度为$1$的点,我们在该点建一个水箱。对于每一个入度为$1$,出度为$0$的点,我们在该点建一个水龙头。可以发现,每一个水箱对应一个唯一的水龙头,我们将每对对应......
  • GUROBI案例实战(一)——Supply Network Design(网络流模型)
    GUROBI官方给出的案例,但本篇实现方式与其有些不一样,并且对一些函数给出了解释:ymodeling-examples/supply_network_design/supply_network_design_1.ipynbatmaster·Gurobi/modeling-examples(github.com)一、问题描述给定两个工厂、四个中转站、六个客户:FactorySupply......