• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 1:28am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 1:28am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Best Reliable Sources for Daily Support and Resistance points. 2 replies

Need help: edit support resistance indicator 2 replies

The best support and resistance levels 55 replies

What are the Best Support and Resistance Systems? 1 reply

Need help with Support, Resistance and Fib 14 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 256
Attachments: Need Best Support and Resistance Indicator
Exit Attachments
Tags: Need Best Support and Resistance Indicator
Cancel

Need Best Support and Resistance Indicator

  • Last Post
  •  
  • 1 1415Page 161718 23
  • 1 15Page 1617 23
  •  
  • Post #301
  • Quote
  • May 9, 2018 1:19pm May 9, 2018 1:19pm
  •  ebeckers
  • Joined Nov 2017 | Status: Member | 376 Posts
Quoting gio.gee
Disliked
Ebeckers {quote} 1. I've not used your code its MT5 a complete different language yes it is based of your Idea but that's it 2. This is not for commercial use (what i choose to do with it is up to me as i paid to have it made from scratch) 3. I no longer use MT4 and so do not use your indicator 4. this was email to you:17th April and i got no reply from you................. Hi Erwin, What can I say amazing work on the MT4 support and Resistance indicator, I’m going to pay to have a version made on MT5 I just wanted to know as I’m not a programmer...
Ignored
Look buddy, for me its pretty simple :

1) "I've not used your code, its MT5 a complete different language, yes it is based of your Idea, but that's it"
Doesn't matter. You took my open source code, improved/changed/refactored it for MT 5 whatever.
In the end...
- You took my opensource code
- You used it to create a closed-source product from it
- and you didn't gave back the changes to the open source community

2) "But this is not for commercial use"
I don't care. Doesn't change the facts I mentioned in #1

3) "But I don't use MT4?
I don't care. Doesn't change the facts I mentioned in #1

4) "But I send you an email ?"
Doesn't change the facts I mentioned in #1.
Sending an e-mail and not getting a response doesn't give you the rights to steal something, does it ?

Erwin
 
5
  • Post #302
  • Quote
  • May 9, 2018 1:33pm May 9, 2018 1:33pm
  •  Nicholishen
  • Joined Jul 2005 | Status: zzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzz | 1,289 Posts
Quoting ebeckers
Disliked
{quote} Look buddy, for me its pretty simple : 1) "I've not used your code, its MT5 a complete different language, yes it is based of your Idea, but that's it" Doesn't matter. You took my open source code, improved/changed/refactored it for MT 5 whatever. In the end... - You took my opensource code - You used it to create a closed-source product from it - and you didn't gave back the changes to the open source community 2) "But this is not for commercial use" I don't care. Doesn't change the facts I mentioned in #1 3) "But I don't use MT4? I don't...
Ignored
I wouldn't be too concerned with "Commercial use" regarding MT4/5 code... It's likely the "entrepreneur" will never recoup his freelance cost. In cases like this I would really suggest that you include an appropriate licence in the root of your github project and also in the file itself (if you are sharing as attachments in the forums) that way you can enforce a cease and desist if your code pops up on the MQL marketplace.

Quote
Disliked
I would be more than happy to share it with you.
You are missing the point. This is a scummy way to use someone else's open-source.
 
 
  • Post #303
  • Quote
  • May 9, 2018 9:13pm May 9, 2018 9:13pm
  •  mikethadon
  • | Joined May 2018 | Status: Member | 98 Posts
Quoting ebeckers
Disliked
For those using it, here's the latest version of my S&R indicator: What's new: - you can specify your own colors - indicator now supports following key shortcuts: press following keys to: 'h' to turn on/off H4 S&R lines 'd' to turn on/off daily S&R lines 'w' to turn on/off weekly S&R lines '1'-'5' to switch between minimum-maximum detail 'r' for reset back to default values {image} {image} {file}
Ignored

Hey man this s&r looks awesome, i have a few questions about it it.

1. do the arrows repaint?

2. is it good to use on the 1hr?

3. Does Alert you when the price touches the zones or when and arrow appears?
 
 
  • Post #304
  • Quote
  • May 10, 2018 12:46pm May 10, 2018 12:46pm
  •  kelemi
  • | Joined Feb 2018 | Status: Member | 5 Posts
First, I completely agree with the "open source" concept explained by ebeckers.

Secondly, please ebeckers and friday13 check what I'm going to say below.
As told, I'm not a big programmer but I was able to "read" and (I hope) find out some issues that, if real, maybe could be bring to a revised version.
Using the mtf version of friday13 I had problems with refreshing lines in smaller timeframes, exept after the OnInit(), eg. changing timeframe.
In fact the Refresh (that is -> forceRefresh=true) seems to be called at the OnInit(), and this is OK, and automatically only when a new Day is found/calculated:

Line 552 in mtf_CSsupportResistance.mqh -> if (day != _previousDay || forceRefresh)

This had a sense as the original indicator was made for working h4/d1/w1.
But the mtf version needs a more frequent refresh/recalculation of data according to the smaller timefrime used.

So now I've introduced into OnCalculate() the following mod, so that at every new bar (of the active timeframe) all the re-calculations are made and then the lines are re-drawn accordingly:

OnCalculate(etc et..)
{
if (Bars>bar_calculated)
{
CalculateSR(true);
}
return(rates_total);
}

What I'm saying has some sense?
If I'm correct (I'm not sure 100% because I could have bad interpreted the code) maybe friday13 could review and re-publish his mod?
Friday13, maybe there are are some other places in the code to be checked/reviewed for this refresh issue?

Hope I was useful, thanks, bye
 
 
  • Post #305
  • Quote
  • Edited 8:03pm May 15, 2018 6:51pm | Edited 8:03pm
  •  hesron
  • Joined Dec 2012 | Status: Member | 3,118 Posts
Quoting ebeckers
Disliked
you can find all code and the ex4 here https://github.com/erwin-beckers/SupportResistance
Ignored
thank you so much ebeckers .... you are the best one .... I pray will you long life
All my analysis is based on Wyckoff Methods
 
 
  • Post #306
  • Quote
  • Jun 9, 2018 8:42am Jun 9, 2018 8:42am
  •  OrelMely
  • | Joined Apr 2017 | Status: Member | 56 Posts
Quoting ebeckers
Disliked
For those using it, here's the latest version of my S&R indicator: What's new: - you can specify your own colors - indicator now supports following key shortcuts: press following keys to: 'h' to turn on/off H4 S&R lines 'd' to turn on/off daily S&R lines 'w' to turn on/off weekly S&R lines '1'-'5' to switch between minimum-maximum detail 'r' for reset back to default values {image} {image} {file}
Ignored

hello thank for your work with this awesome indicator!!

can i know wich cross arrow indicator do you use in this picture?

thankss
 
 
  • Post #307
  • Quote
  • Jun 9, 2018 12:47pm Jun 9, 2018 12:47pm
  •  OrelMely
  • | Joined Apr 2017 | Status: Member | 56 Posts
someone have any version for mt5? it will be nice m thankss
 
 
  • Post #308
  • Quote
  • Jun 14, 2018 6:42am Jun 14, 2018 6:42am
  •  Vcv13
  • Joined Feb 2013 | Status: Member | 262 Posts
Quoting ramzam
Disliked
this is one is fibo and fractalsmod indicator... {image} {file} {file}
Ignored
Hi, can we have simple lines instead of those dotted lines in this indicator please? thank you
The loss was not bad luck. It was bad Analysis - D.Einhorn
 
 
  • Post #309
  • Quote
  • Jun 14, 2018 6:51am Jun 14, 2018 6:51am
  •  Botan626
  • Joined Sep 2016 | Status: --- | 1,109 Posts
Quoting Vcv13
Disliked
{quote} Hi, can we have simple lines instead of those dotted lines in this indicator please? thank you
Ignored

Hello, yes, we can.
 
 
  • Post #310
  • Quote
  • Jun 14, 2018 7:13am Jun 14, 2018 7:13am
  •  Vcv13
  • Joined Feb 2013 | Status: Member | 262 Posts
I tried changing the style but I couldn't.

now it looks like this
Attached Image (click to enlarge)
Click to Enlarge

Name: b.jpg
Size: 131 KB


I want it to look like this
Attached Image (click to enlarge)
Click to Enlarge

Name: a.jpg
Size: 122 KB
The loss was not bad luck. It was bad Analysis - D.Einhorn
 
 
  • Post #311
  • Quote
  • Jun 14, 2018 8:34am Jun 14, 2018 8:34am
  •  mitzescu
  • Joined May 2018 | Status: Member | 109 Posts
Quoting friday13
Disliked
{quote} It is not possible to add Yearly-S/R-lines in an easy way, as MT4 does not have this timeframe. {quote} I allowed myself to add lower timeframes to the code, so I attach it here since I don't know how to add changes on GitHub. {file}
Ignored

Hi,

Can you please add alerts to this awesome indicator?

Thank you!
 
 
  • Post #312
  • Quote
  • Jun 14, 2018 3:18pm Jun 14, 2018 3:18pm
  •  EeZeeTrader
  • | Joined Apr 2016 | Status: Member | 103 Posts
Here is one that I found elsewhere.
Same levels on MTF and descriptive as well.

Attached File(s)
File Type: ex4 Important_SR_Levels.ex4   61 KB | 2,644 downloads
Ask and you look stupid for 5 minutes. Don't ask and stay stupid forever.
 
 
  • Post #313
  • Quote
  • Jun 14, 2018 4:54pm Jun 14, 2018 4:54pm
  •  mitzescu
  • Joined May 2018 | Status: Member | 109 Posts
Quoting EeZeeTrader
Disliked
Here is one that I found elsewhere. Same levels on MTF and descriptive as well. {file}
Ignored
I tried this indicator... Who does that?!!
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot (861).png
Size: 36 KB
 
 
  • Post #314
  • Quote
  • Jun 15, 2018 12:31am Jun 15, 2018 12:31am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,962 Posts
Quoting Vcv13
Disliked
I tried changing the style but I couldn't. now it looks like this {image} I want it to look like this {image}
Ignored
search in the code STYLE_DOT ... you change this dot to SOLID and compile
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Post #315
  • Quote
  • Jun 15, 2018 5:45am Jun 15, 2018 5:45am
  •  Vcv13
  • Joined Feb 2013 | Status: Member | 262 Posts
Quoting ramzam
Disliked
{quote} search in the code STYLE_DOT ... you change this dot to SOLID and compile
Ignored

friend, here's the code, I don't see any STYLE_DOT

//+------------------------------------------------------------------+
//| FractalsMod.mq4 |
//| Manel Sanchon |
//+------------------------------------------------------------------+
#property copyright "Manel Sanchon"
#property link ""
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_width1 0
#property indicator_color2 Blue
#property indicator_width2 0
//---- input parameters
extern int leftbars = 12;
extern int rightbars = 12;
extern int shift = 0;
//---- buffers
double ExtUpperBuffer[];
double ExtLowerBuffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicator buffers mapping
SetIndexBuffer(0,ExtUpperBuffer);
SetIndexBuffer(1,ExtLowerBuffer);
//---- drawing settings
SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,167);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,167);
//----
SetIndexEmptyValue(0,0.0);
SetIndexEmptyValue(1,0.0);
//---- name for DataWindow
SetIndexLabel(0,"Fractal Up");
SetIndexLabel(1,"Fractal Down");
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
ObjectDelete(0,"Fractal Up");
ObjectDelete(1,"Fractal Down");
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
double Higher,Lower;
int countup=0;
int countdown=0;
int counted_bars=IndicatorCounted();
if(counted_bars < 0) return(-1);
if(counted_bars>0) counted_bars--;
int CalculateBars=Bars-counted_bars;
if(counted_bars==0) CalculateBars-=1+leftbars;
for(int Count=CalculateBars; Count>=0; Count--)
{
for(int j=1;j<=leftbars;j++)
{
if(Count+j<CalculateBars)
{
if(High[Count]>High[Count+j]) countup=countup+1;
if(Low[Count]<Low[Count+j]) countdown=countdown+1;
}
}
for(j=1;j<=rightbars;j++)
{
if(Count-j>=0)
{
if(High[Count]>High[Count-j]) countup=countup+1;
if(Low[Count]<Low[Count-j]) countdown=countdown+1;
}
}
if(countup==leftbars+rightbars) Higher=High[Count];
else Higher = ExtUpperBuffer[Count-shift+1];
if(countdown==leftbars+rightbars) Lower = Low[Count];
else Lower=ExtLowerBuffer[Count-shift+1];
ExtUpperBuffer[Count-shift] = Higher;
ExtLowerBuffer[Count-shift] = Lower;
countup=0;
countdown=0;
//if(shift==0)
// {
// Comment("FractalMod("+leftbars+","+rightbars+";"+shift+")","\n Up="+Higher+";Down="+Lower);
// }
}
//----
return(0);
}
//+------------------------------------------------------------------+
The loss was not bad luck. It was bad Analysis - D.Einhorn
 
 
  • Post #316
  • Quote
  • Jun 15, 2018 5:58am Jun 15, 2018 5:58am
  •  Jagg
  • Joined Oct 2006 | Status: Member | 533 Posts
you need to change the number 167 (in lines SetIndexArrow(1,167)...) to something different....

See your possibilities for example here http://www2.nefec.org/UPM/swingd.htm

(solid lines with this SetIndexArrow technique are not possible)
 
1
  • Post #317
  • Quote
  • Jun 15, 2018 6:06am Jun 15, 2018 6:06am
  •  kelemi
  • | Joined Feb 2018 | Status: Member | 5 Posts
Vcv13, as far as I understood about mql4, you cannot transform the small "square" into a line, unless you modify the logic of the code.

The command implied is this:
SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,167);

"167" is the code for the small square in Wingdings Font, which is put over/under every candle.
For example if you try with "40" you will get a small fixed telephone icon!
Or "81" for a small plane!

If you want a "real" line, I guess you should modify the code in order to draw an object "line", which is different.
Hope I was of help.
 
1
  • Post #318
  • Quote
  • Jun 15, 2018 7:38am Jun 15, 2018 7:38am
  •  mitzescu
  • Joined May 2018 | Status: Member | 109 Posts
Quoting friday13
Disliked
{quote} It is not possible to add Yearly-S/R-lines in an easy way, as MT4 does not have this timeframe. {quote} I allowed myself to add lower timeframes to the code, so I attach it here since I don't know how to add changes on GitHub. {file}
Ignored
Hi friday13!

Can you pls add alert when price is near a line and another if line was crossed? Near line at 30 pips and after crossing line?

Thank you! Hope you will add this!
 
 
  • Post #319
  • Quote
  • Jun 17, 2018 10:30pm Jun 17, 2018 10:30pm
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,962 Posts
Quoting Vcv13
Disliked
{quote} friend, here's the code, I don't see any STYLE_DOT //+------------------------------------------------------------------+ //| FractalsMod.mq4 | //| Manel Sanchon | //+------------------------------------------------------------------+ #property copyright "Manel Sanchon" #property link "" #property indicator_chart_window #property indicator_buffers 2 #property indicator_color1 Red #property indicator_width1 0 #property indicator_color2 Blue #property indicator_width2 0 //---- input parameters extern int leftbars = 12; extern int rightbars...
Ignored
https://docs.mql4.com/constants/obje...ants/wingdings here desire number you can input instead of 167
Attached Image
Success is a Journey Not a Destination....... kind regards ramzam
 
1
  • Post #320
  • Quote
  • Jun 17, 2018 10:40pm Jun 17, 2018 10:40pm
  •  TURoO
  • | Joined Jun 2018 | Status: TraDeR | 20 Posts
try this one.
Attached File(s)
File Type: mq4 Support and Resistance (Barry) with alerts.mq4   7 KB | 2,617 downloads
 
 
  • Platform Tech
  • /
  • Need Best Support and Resistance Indicator
  • Reply to Thread
    • 1 1415Page 161718 23
    • 1 15Page 1617 23
0 traders viewing now
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2023