Re: Fibonacci, Trendlines, Support Resistance & Pivot Point Indicators MT4

641
"FiboCalc button" that leads to entries with the previous day's high and low + Fibonacci

It will tell you all the stop loss and profit points

It is an indicator that shows the entry point and the rate of profit taking / loss cut taking into account the direction of the previous day's high and low prices and the trend up to that point.

In order to use the data up to the previous day, it will be a signal once a day for each currency pair.

Since the entry, loss cut, and settlement rates are fixed at the beginning of the day, IFO orders are also possible. (“Buy Level” or “Sell Level” is the entry rate, “Stoploss level” is loss cut, and Profit Target 1, 2, 3 is profit taking.)

The information displayed on the upper left of the chart also shows the entry and exit rates, and the risk reward for profit taking is known in advance.

It's a very convenient indicator.
These users thanked the author Jedidiah for the post (total 3):
太虚一毫, RodrigoRT7, Kayleb
Do not show pity: life for life, eye for eye, tooth for tooth, hand for hand, and foot for foot.
Deuteronomy 19:21


Re: Fibonacci, Trendlines, Support Resistance & Pivot Point Indicators MT4

642
Jedidiah wrote: Mon May 15, 2023 5:45 pm "FiboCalc button" that leads to entries with the previous day's high and low + Fibonacci
Banzai wrote: Fri Jul 24, 2020 10:08 am OK, a coder showed me how to fix it.
Please download this new version 1.02.
Look like it's working for now.
Image
These users thanked the author Jedidiah for the post:
Kayleb
Do not show pity: life for life, eye for eye, tooth for tooth, hand for hand, and foot for foot.
Deuteronomy 19:21

Re: Fibonacci, Trendlines, Support Resistance & Pivot Point Indicators MT4

643
amdudus wrote: Sat May 05, 2018 9:18 pm Universal ZigZag Channel
As you know that there are a lot of kinds of ZigZags and ZigZag's strategies. But not all of you know that the ZigZag itself has 2 channels: outside and inside. The outside channel can be used as stop loss levels and as profit targets, the inside channel - as trailing stop and for precise entries.
So please take a look at the advanced UniZigZagChannel_v2.4 600+which has both channels plus Buy/Sell signals with advanced Box alerts.
Also you can apply 4 methods to build ZigZag by using 3 parameters ReversalValue, RetraceMethod and ATRperiod:
periodic (eg. ReversalValue=12, RetraceMethod=0)
percent (eg. ReversalValue=0.5, RetraceMethod=1)
in pips (eg. ReversalValue=20, RetraceMethod=2)
ATR's multiplier (eg. ReversalValue=3, RetraceMethod=3,ATRperiod=50)
Image

Image
Do not show pity: life for life, eye for eye, tooth for tooth, hand for hand, and foot for foot.
Deuteronomy 19:21

Re: Fibonacci, Trendlines, Support Resistance & Pivot Point Indicators MT4

644
Rox wrote: Thu Dec 03, 2020 2:47 am This is one of the best pivot point indicators I've found.
I also made a modification with the 4th level of resistance and support.

Features:

  • Pivot Points
  • Fibonacci retracements of the previous day's range
  • Open, high, low, and close of the previous day
  • Plots one period in the future for making tomorrow's trade plan
  • Price labels for all levels
  • Works on all time frames
  • Works with multiple instances on at the same time


Image
Thanks for this indi Rox.
@Mrtools, can you please add options for Fibonacci calculation?

If you could check this out too, it seems not to be functioning: viewtopic.php?p=1295414806#p1295414806
Thanks


Re: Fibonacci, Trendlines, Support Resistance & Pivot Point Indicators MT4

646


BOS - Break Of Structure
Price break through a higher high in a uptrend or break through a lower low in a down trend
(Trend Continueation)

CHOCH - Change of Character
Price break through a Higher low in a uptrend or Break through Lower High in a down trend
(Potential trend reversal)

My rating: 10 out of 10; recommended :thumbup: :In Love:
These users thanked the author Banzai for the post (total 14):
Mrs.Watanabe, Jedidiah, muhammadfarooq, Chickenspicy, Akela, thomdel, Mustafa, maroka, 太虚一毫, RodrigoRT7, excellence, alexm, Kayleb, Mundu19

Re: Fibonacci, Trendlines, Support Resistance & Pivot Point Indicators MT4

647
Graf Analysis
(on/off button)

Draw a daily Fibo from the High & Low of the previous day.
And then draw somediagonal trend lines based on the daily Fibo.
Look at the GREEN diagonal trend lines.
They're based on the High & Low of the daily Fibo.
The rest of the diagonal lines are GANN matrix lines.

Also, check out "#SpudFibo Daily BT 1.04.mq4"
viewtopic.php?p=1295476970#p1295476970

My rating: 8 out of 10; too many lines; some candles do rest on the diagonal trend lines; :thumbup: :In Love:

Here's the English translation:

Code: Select all

#property copyright "Copyright © 2023, MetaQuote"
#property link      "http://www.mql5.com/"
#property indicator_chart_window

extern string Manual_Scale_Input = "";  // Manual Gann scale input

extern double pH1 = 0;       // Gann scale on H1 (0 = auto calculation)
extern double pH4 = 0;       // Gann scale on H4 (0 = auto calculation) for current week
extern double pH4W_1 = 0;    // Gann scale on H4 (0 = auto calculation) for previous week
extern double pH4W_2 = 0;    // Gann scale on H4 (0 = auto calculation) for 2 weeks ago

extern string Scale_Week_Angle_H1_H4 = "";
extern bool H4_H1 = false;   // Show weekly H4 angles on H1

extern string GMT_Shift = "";
extern int DiffTime = 0;     // Time difference between terminal and UTC

extern string Session_Start_Times = "";
extern int Asia = 2;         // Start of the day
extern int Europe = 7;       // Start of European session (Frankfurt Open) in UTC
extern int America = 13;     // Start of American session (New York Open) in UTC

extern string Build_Angles = "";
extern bool NextWeek = true;           // Transition to next week on Saturday–Monday
extern bool NextDay = false;           // Shift one day forward
extern bool ExtDay = false;            // Extend daily line one more day forward
extern bool FromShadow = false;        // If true, from candle shadows; else from body
extern bool Line = false;              // Enable/disable daily and yesterday’s angles
extern bool Day_minmax = true;         // Min/max of previous day
extern bool Wik_op = true;             // Angle of current week
extern bool Wik_minmax = false;        // Min/max of current week
extern bool Wik_1_op = true;           // Angle of previous week
extern bool Wik_1_minmax = true;       // Min/max of previous week
extern bool Wik_2_minmax = false;      // Min/max of 2 weeks ago
extern bool Wik_3_minmax = false;      // Min/max of 3 weeks ago

extern string Build_Grids = "For experiments with grids, disable Grid_standard";
extern bool Grid_standard = true;            // Standard grid plotting
extern bool Grid_today = false;              // Enable/disable today’s grid
extern bool Grid_yesterday = false;          // Enable/disable yesterday’s grid
extern bool Grid_double_H_1 = false;         // If true, double height grid
extern bool Grid_double_H_4 = false;         // If true, double height grid
extern bool Day_before_yesterday = false;    // If true: day before yesterday & yesterday; else: yesterday & today
extern bool Last_week = false;               // If true: shift one week back

extern string Fibo_Mode_Select = "0 - none, 1 - Fibonacci, 2 - Gann";
extern int FiboSelect = 0;                   // 0 = none, 1 = Fibonacci, 2 = Gann
extern color FiboColor = clrDarkGray;        // Color of fibo lines
extern int FiboStyle = 1;                    // Line style of fibo
extern int FiboWight = 0;                    // Line thickness of fibo

extern string Channel_Construction = "false = none, true = draw channels";
extern bool Opening_yesterday = false;
extern bool High_Low = false;

extern string Channel_Up = "";
extern color ChColorOpenUp = clrForestGreen; // Upward channel color
extern color ChColorMax = clrFireBrick;      // Max channel color
extern int ChStyleMax = 1;                   // Line style
extern int ChWightMax = 1;                   // Line thickness

extern string Channel_Down = "";
extern color ChColorOpenDown = clrDeepPink;  // Downward channel color
extern color ChColorMin = clrIndigo;         // Min channel color
extern int ChStyleMin = 1;                   // Line style
extern int ChWightMin = 1;                   // Line thickness

extern string Support_Resistance_Build = "false = none, true = build";
extern bool S_R = false;
extern color R_Color = clrBlue;              // Resistance color
extern color S_Color = clrRed;               // Support color

extern string Resistance = "";
extern int S_R_Max_Style = 0;                // Resistance line style
extern int S_R_Max_Wight = 1;                // Resistance line thickness

extern string Support = "";
extern int S_R_Min_Style = 0;                // Support line style
extern int S_R_Min_Wight = 1;                // Support line thickness

extern string Fibo_S_R_Build = "false = none, true = draw S/R based on fibo";
extern bool S_R_Fibo = false;
extern color Op_Day_Color = clrDarkGoldenrod; // Day open line color
extern color R_Fibo_Color = clrRoyalBlue;     // Fibo resistance color
extern color S_Fibo_Color = clrDeepPink;      // Fibo support color
extern int S_R_Fibo_Style = 2;                // Line style
extern int S_R_Fibo_Width = 1;                // Line thickness
extern int S_R_Fibo_Ray = 0;                  // Ray extension
These users thanked the author Banzai for the post (total 6):
太虚一毫, Jedidiah, thomdel, RodrigoRT7, ParallelNative, Kayleb

LikeRe: Fibonacci, Trendlines, Support Resistance & Pivot Point Indicators MT4

648
Dadas True Trend
(on/off button)

coder: Dadas

In the M15 AUDCAD example below, the two horizontal red lines are BOS (Break of Structure).
They break out to the uptrend.

For more about BOS, check out this post:
viewtopic.php?p=1295512777#p1295512777

My rating: 10 out of 10; recommended :thumbup: :In Love:
These users thanked the author Banzai for the post (total 10):
Jedidiah, RodrigoRT7, maroka, Kayleb, Jimmy, Mundu19, kudrpenk, Ricstar_8, macd & rsi, Sutatong

Re: Fibonacci, Trendlines, Support Resistance & Pivot Point Indicators MT4

650
Jedidiah wrote: Fri May 19, 2023 4:57 pm Dear Mr Tools
I have an optimization request

1. Please add button
2. Please set exclusive color horizontal lines for 38.2 and 61.8 level FIBO lines.
3. Please add exclusive warnings for FIBO 38.2 and 61.8 levels
4. Is it possible to add FIBO Extensions line
Grateful
Was able to add the button. The rest don't think it's possible with fibs done the way they are done.
These users thanked the author mrtools for the post (total 8):
Jedidiah, Marco_Sousa, Chickenspicy, 太虚一毫, RodrigoRT7, Kayleb, Krunal Gajjar, Ricstar_8