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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

Fixing Your Indicators or EAs (Free) 449 replies

Coding robots and indicators in C# for no charge (cTrader API) 180 replies

Oanda MT4 - Indicators and EAs not showing 1 reply

EAs and indicators relating to moutaki... 22 replies

InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 29,566
Attachments: I will code your EAs and Indicators for no charge
Exit Attachments

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 20452046Page 204720482049 2164
  • 1 Page 2047 2164
  •  
  • Post #40,921
  • Quote
  • Nov 2, 2020 10:02pm Nov 2, 2020 10:02pm
  •  eddie777
  • | Joined Nov 2011 | Status: Member | 39 Posts
Quoting fxskipper
Disliked
Hi, this strategy works on manual trading, buy/sell as per UltimateProcalper custom settings, close position as per super-arrow. It would be nice if someone put together EA as per custom settings, both indicators. thx! {image} {file} {file}
Ignored
HI whats the best time frame ?
  • Post #40,922
  • Quote
  • Nov 2, 2020 10:20pm Nov 2, 2020 10:20pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 1,580 Posts
Quoting paul72
Disliked
{quote} DMI + {image}
Ignored
That are levels,right ?
Indicator is just a supportive tool-Use it only if it can benefit you
  • Post #40,923
  • Quote
  • Nov 2, 2020 11:02pm Nov 2, 2020 11:02pm
  •  eddie777
  • | Joined Nov 2011 | Status: Member | 39 Posts
Quoting eddie777
Disliked
HI Coders can anyone convert to MQL4 need to be able to add other pairs and if someone can add 5M TF also would be appreciated {file}
Ignored
any volunteers to fix this and convert to MQL4 add 5M time frame and other pairs please would appreciated?

NZDUSD;USDCHF;USDCAD;EURAUD;EURCAD;EURGBP;EURJPY;EURUSD;AUDUSD;GBPCAD;AUDCAD;GBPJPY;GBPUSD;EURJPY;USDJPY
Attached File
File Type: ex4 MT4 X-LIST.ex4   16 KB | 57 downloads
  • Post #40,924
  • Quote
  • Nov 3, 2020 12:38am Nov 3, 2020 12:38am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 825 Posts
Quoting ElectricSavant
Disliked
Does anybody know about this? I cannot find it. I did find this You cannot trigger a script with a button There is code in there for an EA. But I did not really want an EA as it is too slow. I want a close all button that calls up the "Close All" script. Scripts are noticeably faster than "Close All" EA's. Maybe BlueRain can make us a "Turbo Close All" button? ES {quote}
Ignored
Try this one... just quick code - recycling of some other stuffs from internet resources I found.
Tested and it looks like working fine with me.

I made script name and button label as optional.
You can type in your script name and/or change button strings ( customizable ).
if your script is under subfolder, use double \\ as subfolder.
example: scriptname = "test\\close.mq4"



Note:
Called Script shouldn't have below line or it should be commented out
if it is in the script, it will ask your input & confirmation causing no immediate execution.

#property script_show_inputs

Try out.
Attached File
File Type: mq4 Click-to-Call-A-Script.mq4   9 KB | 65 downloads
I still don't know where is the Holy Grail
1
  • Post #40,925
  • Quote
  • Nov 3, 2020 12:41am Nov 3, 2020 12:41am
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting Sandile
Disliked
Hi guys, Could someone code this indicator for me, Formula First Candle High First Candle Low X = First Candle High - Candle Low Open Proce of the Second Candle + X = Buy Level Open Price of the Second Candle - X = Sell Level Example with today GBPJPY on M30: {image} On Spreadsheet: {image} Spreadsheet: {file} Perhaps a modification of this indicator: {file} I would appreciate your help, thanks in advance.
Ignored

i screw up with some another code from mql5.com, maybe master "CJA" or master "BlueRain" will to help fixing second line (break buy/break sell) base your calculation
Attached Image (click to enlarge)
Click to Enlarge

Name: Screenshot (42).png
Size: 41 KB
Attached File
File Type: mq4 BreakoutM30Daily_v1.00.mq4   4 KB | 54 downloads
Margin Call again and again...
  • Post #40,926
  • Quote
  • Nov 3, 2020 1:07am Nov 3, 2020 1:07am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 825 Posts
Quoting ganztrade
Disliked
{quote} i screw up with some another code from mql5.com, maybe master "CJA" or master "BlueRain" will to help fixing second line (break buy/break sell) base your calculation {file} {image}
Ignored
You are counting candle wrong.

it should be just i, not i - 1.

double HighCandleOne=iHigh(NULL,PERIOD_M30,i+1);
double LowCandleOne=iLow(NULL,PERIOD_M30,i+1);

double Range=HighCandleOne-LowCandleOne;

double HighCandleTwo=iHigh(NULL,PERIOD_M30,i);
double LowCandleTwo=iLow(NULL,PERIOD_M30,i);

datetime CandleTime=bartime+(24*PERIOD_M30*12);


double breakbuy=HighCandleTwo+(Range);
double breaksell=LowCandleTwo-(Range);
I still don't know where is the Holy Grail
  • Post #40,927
  • Quote
  • Nov 3, 2020 2:30am Nov 3, 2020 2:30am
  •  Sandile
  • Joined Dec 2013 | Status: Member | 116 Posts
Quoting ganztrade
Disliked
{quote} i screw up with some another code from mql5.com, maybe master "CJA" or master "BlueRain" will to help fixing second line (break buy/break sell) base your calculation {file} {image}
Ignored
Ganztrade thank you for this brother, hopefully CJA or BlueRain will help fix this.
  • Post #40,928
  • Quote
  • Nov 3, 2020 2:33am Nov 3, 2020 2:33am
  •  EmmK
  • | Joined Jun 2020 | Status: Member | 31 Posts
any coder who would like to work on a project?
  • Post #40,929
  • Quote
  • Nov 3, 2020 2:34am Nov 3, 2020 2:34am
  •  Sandile
  • Joined Dec 2013 | Status: Member | 116 Posts
Quoting BlueRain
Disliked
{quote} You are counting candle wrong. it should be just i, not i - 1. double HighCandleOne=iHigh(NULL,PERIOD_M30,i+1); double LowCandleOne=iLow(NULL,PERIOD_M30,i+1); double Range=HighCandleOne-LowCandleOne; double HighCandleTwo=iHigh(NULL,PERIOD_M30,i); double LowCandleTwo=iLow(NULL,PERIOD_M30,i); datetime CandleTime=bartime+(24*PERIOD_M30*12); double breakbuy=HighCandleTwo+(Range); double breaksell=LowCandleTwo-(Range);
Ignored
Hi Bluerain, I modified the code as suggested above and the values/lines are still wrong, on the picture below is the values generated by the indicator and the correct values for today on GBPJPY M30.


Attached Image (click to enlarge)
Click to Enlarge

Name: GBPJPYM30 p.png
Size: 39 KB


Attached File
File Type: mq4 BreakoutM30Daily_v1.00.mq4   4 KB | 47 downloads


I'd really appreciate your help in getting this to work Sir.
  • Post #40,930
  • Quote
  • Nov 3, 2020 2:57am Nov 3, 2020 2:57am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 825 Posts
Quoting Sandile
Disliked
{quote} Hi Bluerain, I modified the code as suggested above and the values/lines are still wrong, on the picture below is the values generated by the indicator and the correct values for today on GBPJPY M30. {image} {file} I'd really appreciate your help in getting this to work Sir.
Ignored
No, You didn't modify correctly in the attached file.

check attached - which should give correct cal.


double HighCandleOne=iHigh(NULL,PERIOD_M30,i+1);
double LowCandleOne=iLow(NULL,PERIOD_M30,i+1);

double Range=HighCandleOne-LowCandleOne;

double HighCandleTwo=iHigh(NULL,PERIOD_M30,i);
double LowCandleTwo=iLow(NULL,PERIOD_M30,i);




double breakbuy=HighCandleTwo + (Range);
double breaksell=LowCandleTwo-(Range);

datetime CandleTime=bartime+(24*PERIOD_M30*12);
Attached File
File Type: mq4 BreakoutM30Daily_v1.00.mq4   4 KB | 70 downloads
I still don't know where is the Holy Grail
  • Post #40,931
  • Quote
  • Edited at 4:45am Nov 3, 2020 3:06am | Edited at 4:45am
  •  paul72
  • | Joined Jun 2013 | Status: Member | 132 Posts
Quoting mntiwana
Disliked
{quote} That are levels,right ?
Ignored
Yes 60 oversold 10 undersold

Can you code this for me please
  • Post #40,932
  • Quote
  • Nov 3, 2020 3:25am Nov 3, 2020 3:25am
  •  Sandile
  • Joined Dec 2013 | Status: Member | 116 Posts
Quoting BlueRain
Disliked
{quote} No, You didn't modify correctly in the attached file. check attached - which should give correct cal. double HighCandleOne=iHigh(NULL,PERIOD_M30,i+1); double LowCandleOne=iLow(NULL,PERIOD_M30,i+1); double Range=HighCandleOne-LowCandleOne; double HighCandleTwo=iHigh(NULL,PERIOD_M30,i); double LowCandleTwo=iLow(NULL,PERIOD_M30,i); double breakbuy=HighCandleTwo + (Range); double breaksell=LowCandleTwo-(Range); datetime CandleTime=bartime+(24*PERIOD_M30*12); {file}
Ignored
on GBPJPY M30 today, the values should be 135.421 and 135.007, the indicator still gives incorrect values in this regard.

Attached Image (click to enlarge)
Click to Enlarge

Name: GBPJPYM30 pp.png
Size: 41 KB

here is a spreadsheet of how I got the 135.421 and 135.007 values:
Attached File
File Type: xlsx Daily Range Formula.xlsx   10 KB | 31 downloads
  • Post #40,933
  • Quote
  • Nov 3, 2020 4:16am Nov 3, 2020 4:16am
  •  romeo000
  • | Joined Oct 2020 | Status: Member | 9 Posts
can someone code a simple scanner for me?
requirements

  1. should scan all 28 major pairs
  2. timeframe can be changed manually
  3. whenever 30sma crosses 100sma it should give an alert

  • Post #40,934
  • Quote
  • Nov 3, 2020 4:21am Nov 3, 2020 4:21am
  •  doggy7
  • | Joined Oct 2020 | Status: Member | 27 Posts
Quoting lucky1359
Disliked
Very Good Morning Dear Blue Rain, How are you ? Hope you are doing great and high of you spirits. I am testing the Indicator and update you further {image} {image} Have A Great Week Dear Thanks & Regards
Ignored
hi Lucky1359,
may i know the name of the indicator you have at left bottom part of your chart ? (please see also attachment below) . is it available some where on the net, or could you please share it if you don't mind ... .... )
Thank you.
Attached Image
Learning coding &&& statistics are useful. Never giveup even if
  • Post #40,935
  • Quote
  • Nov 3, 2020 4:39am Nov 3, 2020 4:39am
  •  Dave7878
  • | Joined Sep 2018 | Status: Member | 17 Posts
Hello,
I have found this interesting code which exports preset indicator states in csv format for the symbols specified.

https://www.forexfactory.com/thread/...85#post8836585

this code is rather slow.

I wanted to ask if you have seen any other batch export script which can export indicator states for all pairs specified?

Or maybe there is a way to just export DATA window as text for all symbols - just run through all the symbols and export each DATA WINDOW as text? that woudl effectively export all symbol indicator states to text
  • Post #40,936
  • Quote
  • Nov 3, 2020 4:40am Nov 3, 2020 4:40am
  •  Maijin
  • | Joined Dec 2013 | Status: Member | 37 Posts
Quoting romeo000
Disliked
can someone code a simple scanner for me? requirements should scan all 28 major pairs timeframe can be changed manually whenever 30sma crosses 100sma it should give an alert
Ignored
This indicator is already out there.
I am not allowed to post a link but this should work

Attached Image (click to enlarge)
Click to Enlarge

Name: Advanced Moving Average Crossover Scanner FREE.png
Size: 9 KB
  • Post #40,937
  • Quote
  • Nov 3, 2020 4:41am Nov 3, 2020 4:41am
  •  Dave7878
  • | Joined Sep 2018 | Status: Member | 17 Posts
Hello hello FX warriors!)
I have a simple coding request witch can also be handy for many. Hanover told someone here can help to modify his code to export all available symbols as CSV files - without needing to specify individual symbols.

here is the link to the code:

https://www.forexfactory.com/thread/...13#post8010713

Ideally this code woudl just export the last 1000 daily bars for all symbols.. currently my FXPRO mt4 has like 200 symbols - need to export them all - as you can understand specifying each symbol for export is an unnecessary task - given I will be exporting data from multiple mt4 platforms...
  • Post #40,938
  • Quote
  • Edited at 5:57am Nov 3, 2020 4:46am | Edited at 5:57am
  •  doggy7
  • | Joined Oct 2020 | Status: Member | 27 Posts
Hi BlueRain & other great coders,
i do not know this is the right place to ask this or not. i am just learning to code multi time frame & multi pairs indicator, and i try to put some information based on its time frame & pairs to array. i got problem/ error on putting this to arrays, lets say : euM1[], euM5[],.... , auM1[],auM5[] ... etc ...
the format of the array are same for all of arrays. How to access the array ( to put/ read/ update data in array) ? i try to create a pointer to specified array, but it is failed.
Example :
Inserted Code
//--- access array eu pair, time frame M15: insert data ---
if ((pair=EU) && (tf=15) && (i == x) )  {
   arrName = "euM15";
    putToArray(&arrName,pair,tf,i,highPrice);
} // if
 
//--- access array eu pair, time frame M15: read data ---
if (condition met) {
   y = getFromArray(&arrName,pair,tf,i);
} // if

Could you please give simple example on how to do this ? i think it would be possible to do like that , but do not know how... or i must do it one by one , per pair & per time frame .... it means: i must do the same thing 28x9 times (28 pairs, from M1 to MN1...) ??

edit :
whroeder at mql5.com said something about 'class' and 'structure' inside the class ... but unfortunately i do not understand it
any idea (and simple example if possible) is really appreciated.

Thank you in advance
Learning coding &&& statistics are useful. Never giveup even if
  • Post #40,939
  • Quote
  • Nov 3, 2020 4:50am Nov 3, 2020 4:50am
  •  romeo000
  • | Joined Oct 2020 | Status: Member | 9 Posts
Quoting Maijin
Disliked
{quote} This indicator is already out there. I am not allowed to post a link but this should work {image}
Ignored
that version is only providing with EURUSD & GBPUSD, and it's not even mq4 file so can't even add others
  • Post #40,940
  • Quote
  • Nov 3, 2020 5:02am Nov 3, 2020 5:02am
  •  Mcxtrader
  • | Joined Jun 2017 | Status: Member | 110 Posts
Quoting BlueRain
Disliked
{quote} it was in original code.. not mine. It can be commented out.. - useless prints. {file}
Ignored

Thanks for the update.
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 20452046Page 204720482049 2164
    • 1 Page 2047 2164
14 traders viewing now, 4 are members:
Rome1
,
loki177
,
haruteri
,
Hunter74
  • 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 / ©2021