• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 2:54pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 2:54pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Multi Pair Pivot Point Scanner Alerts mt4 554 replies

building multi-pair multi-timeframe scanner 47 replies

MTF Multi pair MA cross dashboard with alerts 4 replies

Pair-based equity alerts for MT4 0 replies

Multi-pair trading or Few-Pair Trading. [poll] 15 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 37
Attachments: Multi Pair Average Range Scanner Alerts
Exit Attachments
Tags: Multi Pair Average Range Scanner Alerts
Cancel

Multi Pair Average Range Scanner Alerts

  • Last Post
  •  
  • Page 1 23 4
  • Page 1 23 4
  •  
  • Post #1
  • Quote
  • First Post: Edited Apr 27, 2020 10:57pm Apr 26, 2020 7:33pm | Edited Apr 27, 2020 10:57pm
  •  NickBixy
  • Joined Apr 2018 | Status: Member | 836 Posts
Pivot Point Scanner Alerts Indicator Here (MT4/MT5)
https://www.forexfactory.com/showthread.php?t=904734

Scans multiple symbols looking for when the price crosses a average range high/low level or when average range xx percent range is Reached then it alerts the trader.

Put Scanner On A Separate Chart Tab From Trading Strategy

You Can Put Multiple Instances of Scanner On Same Chart Tab To Scan For More Time Frames Alert Conditions

Can Open Chart Symbol By Clicking On The Symbol Name In The Symbol Column/Recent Alerts List-
Save Template Name As "default" if want certain template to open

Delete the old updates and make sure your chart is using latest update on it and not the old buggy updates

if using symbol list instead of market watch symbols
Symbols to scan needs to be in market watch or will get the error message "Can't find this symbol: AUDCAD, put symbols in Market Watch, Double Check Prefix/Suffix Settings"

Two average range indicators here

AverageRangeLines draws the average range lines for any time-frame can have multiple instances on chart just change the time-frame period,Num APR Period, line colors and custom high/low message to tell them apart
No GMT timezone setting uses the brokers GMT candles to calculate average range

Multi_Pair_Average_Range_Scanner_Alerts draws the dashboard and has two alert conditions that can be turned off
Cross Alerts - alert when bid price cross the APR(Average Period Range) high/Low levels
Percent Alerts - alert when the percentage of the current range divide the APR reaches certain value
Lots of Customization settings for the dashboard labels, colors,font,fontsize,position
option to round to nearest integer and num digits after decimal point
Attached Image
Attached Image (click to enlarge)
Click to Enlarge

Name: 2.png
Size: 69 KB
Attached Image
Attached Image
Attached Image (click to enlarge)
Click to Enlarge

Name: 5.png
Size: 123 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: 6.png
Size: 112 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: 7.png
Size: 178 KB


Delete the old updates and make sure your chart is using latest update on it and not the old buggy updates
AverageRangeLines - Latest Update v1.5
AverageRangeScanner - Latest Update v1.1

MT4

Attached File(s)
File Type: mq4 AverageRangeLines_v1.5.mq4   12 KB | 1,519 downloads | Uploaded Apr 27, 2020 10:56pm

Attached File(s)
File Type: mq4 Multi_Pair_Average_Range_Scanner_Alerts_v1.1.mq4   37 KB | 1,904 downloads | Uploaded Apr 27, 2020 10:52pm


let me know if come across any bugs or have good ideas to improves the indicators
"People only see what they are prepared to see."
  • Post #2
  • Quote
  • Apr 26, 2020 9:14pm Apr 26, 2020 9:14pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,438 Posts
Quoting NickBixy
Disliked
Two average range indicators here AverageRangeLines draws the average range lines for any time-frame can have multiple instances on chart just change the time-frame period,Num APR Period, line colors and custom high/low message to tell them apart No GMT timezone setting uses the brokers GMT candles to calculate average range Multi_Pair_Average_Range_Scanner_Alerts draws the dashboard and has two alert conditions that can be turned off Cross Alerts - alert when bid price cross the APR(Average Period Range) high/Low levels Percent Alerts - alert when...
Ignored
Hi NickBixy
Thanks and appreciations for your efforts and contributions -
 
1
  • Post #3
  • Quote
  • Apr 27, 2020 6:43am Apr 27, 2020 6:43am
  •  Erebus
  • Joined Jul 2011 | Status: Member | 7,393 Posts
why the heck is the formula showing on the high and low lines?

Attached Image
If you chase two rabbits, you will catch neither one!
BRAIN.SURGERY Return This Year: 19.2%
 
2
  • Post #4
  • Quote
  • Apr 27, 2020 6:56am Apr 27, 2020 6:56am
  •  thisara1
  • | Commercial Member | Joined Sep 2018 | 1,427 Posts
Quoting Erebus
Disliked
why the heck is the formula showing on the high and low lines? {image}
Ignored
 
1
  • Post #5
  • Quote
  • Edited 7:49am Apr 27, 2020 7:29am | Edited 7:49am
  •  NickBixy
  • Joined Apr 2018 | Status: Member | 836 Posts
Quoting Erebus
Disliked
why the heck is the formula showing on the high and low lines? {image}
Ignored
its a quick way to see all the information
A=APR(period Num) Average Period Range Value
C=current range value
P=percent current Range / APR value
D=distance to bid price value

if you want to remove that information go in the code in the void DrawRangeLine() Method delete the yellow highlighted code and compile
then just the custom high/low message will show

ill update it later on today busy right now, to have a input toggle option to enable/disable showing that information

Inserted Code
void DrawRangeLines()
  {
   string avgRange=  "(A"+(string)period+"="+DoubleToString(GetAverageRangeNumPeriodsPipsPoints(),decimalPlaces)+")";
   string todayRange="(C="+DoubleToString(GetTodayRangePipsPoints(),decimalPlaces)+")";
   string highDis=   "(D="+DoubleToString(GetBidAverageRangeDistancePipsPoints(GetAverageRangeHigh()),decimalPlaces)+")";
   string lowDis=    "(D="+DoubleToString(GetBidAverageRangeDistancePipsPoints(GetAverageRangeLow()),decimalPlaces)+")";
   string ratio=     "(P="+DoubleToString(GetAverageRangeRatioPipsPoints(),decimalPlaces)+"%)";
   string highMSG=customHighMSG+avgRange+todayRange+ratio+highDis;    <-------
   string lowMSG=customLowMSG+avgRange+todayRange+ratio+lowDis;    <---------

string highMSG=customHighMSG+avgRange+todayRange+ratio+highDis;

string lowMSG=customLowMSG+avgRange+todayRange+ratio+lowDis;

"People only see what they are prepared to see."
 
5
  • Post #6
  • Quote
  • Apr 27, 2020 2:29pm Apr 27, 2020 2:29pm
  •  enoeraew
  • | Joined Dec 2014 | Status: Member | 50 Posts
So cool. I'm constantly amazed at peoples generosity on this site. Thanks for what you have given us!
 
1
  • Post #7
  • Quote
  • Edited 9:34pm Apr 27, 2020 9:13pm | Edited 9:34pm
  •  NickBixy
  • Joined Apr 2018 | Status: Member | 836 Posts
new updates out
AverageRangeLine_v1.5- added option to hide the information labels
Multi_Pair_Average_Range_Scanner_Alerts_v1.1 - fixed the divide by zero error that crashed the indicator

to delete stuck labels on chart caused by divide by zero error crash
Ctrl+B then click List All, Delete all the Objects then switch time-frame to refresh the indicator


let me know if come across any more bugs or stuff to improve

Delete the old updates and make sure your chart is using latest update on it and not the old buggy updates
"People only see what they are prepared to see."
 
3
  • Post #8
  • Quote
  • Edited 11:00pm Apr 27, 2020 10:04pm | Edited 11:00pm
  •  NickBixy
  • Joined Apr 2018 | Status: Member | 836 Posts
redownload the average range scanner v1.1 i fixed the distance labels value were all zero

sorry guys im a lazy coder i don't double check my work or fully test before releasing into the wild
"People only see what they are prepared to see."
 
1
  • Post #9
  • Quote
  • Apr 28, 2020 4:38am Apr 28, 2020 4:38am
  •  Tintforex
  • | Joined Apr 2020 | Status: Member | 12 Posts
[ {file} let me know if come across any bugs or have good ideas to improves the indicators[/quote]

With compliment Nicky,
The new file CAN NOT open on the chart.
I have spent more than 20-minutes trying to unveil what could have been the problem.
Looking forward to hearing from you.

Many Thanks
 
1
  • Post #10
  • Quote
  • Apr 28, 2020 4:46am Apr 28, 2020 4:46am
  •  enoeraew
  • | Joined Dec 2014 | Status: Member | 50 Posts
It worked on my chart.
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot1.png
Size: 72 KB
 
1
  • Post #11
  • Quote
  • Edited 5:55am Apr 28, 2020 4:49am | Edited 5:55am
  •  NickBixy
  • Joined Apr 2018 | Status: Member | 836 Posts
Quoting Tintforex
Disliked
[ {file} let me know if come across any bugs or have good ideas to improves the indicators
Ignored
With compliment Nicky, The new file CAN NOT open on the chart. I have spent more than 20-minutes trying to unveil what could have been the problem. Looking forward to hearing from you. Many Thanks[/quote]

try my compiled files, put in the MQL4\Indicators folder
Attached File(s)
File Type: ex4 Multi_Pair_Average_Range_Scanner_Alerts_v1.1.ex4   79 KB | 714 downloads
Attached File(s)
File Type: ex4 AverageRangeLines_v1.5.ex4   30 KB | 560 downloads


check if there any errors in the Experts or Journal Tabs in the MT4 Terminal

if you opened the .mq4 source code file and compiled code by double clicking on Compile button you could have accidentally cancelled the compile process and that would not open on chart, click the Compile button once
also make sure to say Yes to the Do you want to overwrite? prompt

if get a Ex4 write error delete all versions of indicator from MQL4\Indicators folder and then try again to compile .mq4
Attached Image (click to enlarge)
Click to Enlarge

Name: 1.png
Size: 51 KB
Attached Image
"People only see what they are prepared to see."
 
2
  • Post #12
  • Quote
  • Edited 9:07am Apr 28, 2020 8:10am | Edited 9:07am
  •  NickBixy
  • Joined Apr 2018 | Status: Member | 836 Posts
heres a pivot points lines indicator

im trying to port it over to MT5 but having troubles may eventually figure it out

can do long and short line many customization options
Pivot Point Types

  1. Standard (Floor)
  2. Fibonacci
  3. Woodie
  4. Camarilla


All Pivot Point Timeframes
EDIT REALIZED I SPELT PivotPointsLines Wrong had it PivotPivotsLines

Attached Image
Attached Image (click to enlarge)
Click to Enlarge

Name: 2.png
Size: 44 KB
Attached File(s)
File Type: mq4 PivotPointsLines_v1.0.mq4   10 KB | 545 downloads
Attached File(s)
File Type: ex4 PivotPivotsLines_v1.0.ex4   24 KB | 429 downloads
"People only see what they are prepared to see."
 
7
  • Post #13
  • Quote
  • Apr 29, 2020 6:33pm Apr 29, 2020 6:33pm
  •  Tintforex
  • | Joined Apr 2020 | Status: Member | 12 Posts
hello NickBixy
With compliment ...
Please do you have a DIVERGENCE DASHBOARD?
 
1
  • Post #14
  • Quote
  • Apr 29, 2020 6:39pm Apr 29, 2020 6:39pm
  •  NickBixy
  • Joined Apr 2018 | Status: Member | 836 Posts
Quoting Tintforex
Disliked
hello NickBixy With compliment ... Please do you have a DIVERGENCE DASHBOARD?
Ignored
nope
"People only see what they are prepared to see."
 
 
  • Post #15
  • Quote
  • May 5, 2020 6:27pm May 5, 2020 6:27pm
  •  investorsonl
  • | Joined Feb 2020 | Status: Junior Member | 1 Post
Hi Nickbizy , I Appreciate your great task, Thanks for sharing , I wanted to ask , If I am a day trader Which Time frame I should use on Average range scanner Besides Daily candle ?
 
1
  • Post #16
  • Quote
  • May 28, 2020 1:29am May 28, 2020 1:29am
  •  ggtc
  • | Joined Jan 2014 | Status: Member | 4 Posts
Nickbixy,

thank you so much for an awesome scanner.

May be different than the original scanner intention, but...
Do you know if there is a settings combination that will give yesterday's High and Low as the threshold parameters to alert?
Been trying to mess around with the indicators and haven't been able to get it to show yesterday's High and Low as such.

My effort is to scan all pairs and find pairs with price above or below yesterday's high or low and show them in the scanner just as yours.
I then scalp a short reversal 10-30pips depending on pair.
I use the attached indicator manually and takes forever to change 20+ charts.
anyway thank you again for your scanner and I look forward to trying out different uses
Attached File(s)
File Type: ex4 !FXM_Daily_HiLo.ex4   3 KB | 390 downloads
 
1
  • Post #17
  • Quote
  • Jun 16, 2020 6:20am Jun 16, 2020 6:20am
  •  calisto77
  • | Joined Sep 2015 | Status: Member | 103 Posts
hi NickBixy, thanks for the scanner , very handy
a question please
the chart codes in the my scanner output turn up all mixed up ie, GBP, EUR, AUD,GBP,USD etc
I checked the input codes & they're all in correct order.
is there any way to get the output in order please

thanks
 
1
  • Post #18
  • Quote
  • Jun 16, 2020 7:18am Jun 16, 2020 7:18am
  •  rosalieone
  • Joined Sep 2009 | Status: Member | 530 Posts
Hi,
I've got this
Attached Image
 
1
  • Post #19
  • Quote
  • Jun 16, 2020 6:05pm Jun 16, 2020 6:05pm
  •  NickBixy
  • Joined Apr 2018 | Status: Member | 836 Posts
Quoting calisto77
Disliked
hi NickBixy, thanks for the scanner , very handy a question please the chart codes in the my scanner output turn up all mixed up ie, GBP, EUR, AUD,GBP,USD etc I checked the input codes & they're all in correct order. is there any way to get the output in order please thanks
Ignored
for the setting "Symbols To Scan-Market Watch/Symbol List Below?", are you using Market Watch or Symbols In List?

if using Market Watch setting , the symbol order will be the same as the order inside market watch window

and if using Symbols In List setting , the order of the symbol in the list will be the order of the list , well should be anyway

i use the setting Symbols In List and only scan for 4 different symbol that are uncorrelated and my symbol order is correct for me
"People only see what they are prepared to see."
 
 
  • Post #20
  • Quote
  • Jun 16, 2020 6:08pm Jun 16, 2020 6:08pm
  •  NickBixy
  • Joined Apr 2018 | Status: Member | 836 Posts
Quoting rosalieone
Disliked
Hi, I've got this {image}
Ignored
some bugs, were there any error message is the experts/journal tabs?,

try changing time-frames back and forth to re-initialize the indicator and see if it works correctly after

i never had that issue but i only use 4 symbols
"People only see what they are prepared to see."
 
 
  • Platform Tech
  • /
  • Multi Pair Average Range Scanner Alerts
  • Reply to Thread
    • Page 1 23 4
    • Page 1 23 4
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