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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

Coding robots and indicators in C# for no charge (cTrader API) 181 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

Need help to code EAs for MT4 and MT5 2 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 20432044Page 204520462047 2221
  • 1 Page 2045 2221
  •  
  • Post #40,881
  • Quote
  • Nov 1, 2020 1:01pm Nov 1, 2020 1:01pm
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting mntiwana
Disliked
{quote} "MA Chanels FIBO 1.01" In general indicators are coded universally for use of every trader, if there is something particular then there are parameters to adjust accordingly or get coded by coders the one in topic is Fibo levels on basic MA methods/prices on desired values (period) applied Here is Mladen's tweaked ver,a bit extended too change colors as you required from property tab colors {image}{image}{image} {file}
Ignored
Thank you mntiwana, i think it is same indicator, i try to change color in "MA Chanels FIBO 1.01" option all green on top area and all red on bottom area , and when pressing on different timeframe or other pairs, still exhange color upside down.
Margin Call again and again...
  • Post #40,882
  • Quote
  • Nov 1, 2020 1:45pm Nov 1, 2020 1:45pm
  •  MFXTrader
  • | Joined Jul 2017 | Status: Member | 47 Posts
Quoting BlueRain
Disliked
{quote} Removed all labels but you can't remove lines as those are HLine objects. {file}
Ignored
I really appreciate your hard work BlueRain. Thank you very much. Can you please add only price values on the extreme right side that thin line?
  • Post #40,883
  • Quote
  • Nov 1, 2020 3:58pm Nov 1, 2020 3:58pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting MFXTrader
Disliked
{quote} I really appreciate your hard work BlueRain. Thank you very much. Can you please add only price values on the extreme right side that thin line?
Ignored
restored line descriptions.
Attached File
File Type: mq4 10.1 Daily S&R Daily-No-Lable.mq4   28 KB | 110 downloads
I still don't know where is the Holy Grail
  • Post #40,884
  • Quote
  • Nov 1, 2020 4:00pm Nov 1, 2020 4:00pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting ganztrade
Disliked
{quote} Thank you mntiwana, i think it is same indicator, i try to change color in "MA Chanels FIBO 1.01" option all green on top area and all red on bottom area , and when pressing on different timeframe or other pairs, still exhange color upside down.
Ignored
Because those line is designed that way.

Lines are based on FIb value.
If starting base is negative - means price is down.. Fib lines are drawn to down side.

if you look at the chart, you will notice band color changes based on if prices are down or up.
I still don't know where is the Holy Grail
  • Post #40,885
  • Quote
  • Nov 1, 2020 4:11pm Nov 1, 2020 4:11pm
  •  ganztrade
  • Joined Oct 2020 | Status: Member | 334 Posts
Quoting BlueRain
Disliked
{quote} Because those line is designed that way. Lines are based on FIb value. If starting base is negative - means price is down.. Fib lines are drawn to down side. if you look at the chart, you will notice band color changes based on if prices are down or up.
Ignored
Thanks BlueRain, i finally found cause of changing color, because of this code

if (MathAbs(max) > MathAbs(min))
Inc3 = max;
else
Inc3 = min;

if fibo calculate on max, color on top will be blue, and if calculate on min, the blue color moving down and red color up...

Many thanks for the clue
Margin Call again and again...
  • Post #40,886
  • Quote
  • Nov 1, 2020 4:23pm Nov 1, 2020 4:23pm
  •  censura
  • | Joined Sep 2006 | Status: Member | 405 Posts
Quoting BlueRain
Disliked
{quote} Yes. I will post source code later today. Buffer 0 is buy buffer ( blue ) and buffer 1 is sell ( red ) double Blue = iCustom(Symbole(),0,"BR 4BarFractal Pattern",0,0); double red = iCustom(Symbole(),0,"BR 4BarFractal Pattern",1,0); if ( Blue != EMPTY_VALUE) { BuyDot = true; } if ( Red != EMPTY_VALUE) { RedDot = true; }
Ignored

So tried to edit an existin ea i was using and got a load off errors related to added above i corrected typo in indicators name (patterns) and capital R in red also added boolan expression but no luck

Attached Image (click to enlarge)
Click to Enlarge

Name: 8f9409f72fe9033d888666257abf2bda.png
Size: 178 KB
  • Post #40,887
  • Quote
  • Nov 1, 2020 5:48pm Nov 1, 2020 5:48pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting censura
Disliked
{quote} So tried to edit an existin ea i was using and got a load off errors related to added above i corrected typo in indicators name (patterns) and capital R in red also added boolan expression but no luck {image}
Ignored
it was just quick ref, not meant to be used as is.
You should check and make it correct.


just looking at your code, a lot of mistakes.. you should debug and fix.

declare variable first.

bool BuyDot, RedDot;
BuyDot = false;
RedDot = false;


1. Symbole() -> should be Symbol()

BuyDot == true => this should be assignment. BuyDot = true.
RedDot == true => this should be assignement. RedDot = true.

if ( BuyDot = true ) => this is not correct. it should be if ( BuyDot == true)
same as RedDot == true.
I still don't know where is the Holy Grail
1
  • Post #40,888
  • Quote
  • Nov 1, 2020 5:49pm Nov 1, 2020 5:49pm
  •  MFXTrader
  • | Joined Jul 2017 | Status: Member | 47 Posts
Quoting BlueRain
Disliked
{quote} restored line descriptions. {file}
Ignored
Thank you very much BlueRain.

Best regards
  • Post #40,889
  • Quote
  • Nov 1, 2020 5:51pm Nov 1, 2020 5:51pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting visobibi
Disliked
Hello, I have bought an EA from Fiverr. There is no stop loss. Anybody can help me to add a stop loss of 20 to this EA. It is a very good EA and can be used with very small accounts also. If there is a stop loss, we can trade safely. Thanking you in advance, Sobha {file}
Ignored
Sorry, no body can change on .ex4 file.
I still don't know where is the Holy Grail
  • Post #40,890
  • Quote
  • Nov 1, 2020 6:27pm Nov 1, 2020 6:27pm
  •  visobibi
  • | Joined Oct 2020 | Status: Junior Member | 7 Posts
Hello,
I have one EA working very nicely. I would like to add stop loss to that. Any body can help me regarding this issue.
Thank you in advance
Sobha
Attached File
File Type: mq4 gaps.mq4   3 KB | 100 downloads
  • Post #40,891
  • Quote
  • Nov 1, 2020 7:36pm Nov 1, 2020 7:36pm
  •  simnz
  • Joined Nov 2015 | Status: Member | 1,503 Posts
Quoting PlSoft
Disliked
{quote} It works Found {image}
Ignored
What is global variables? What do they do the proggramme? Why do they affect the PC speed?
Appreciate if you can explain it or send a link to understand it.
Thank you.
Practice makes a person perfect
Golden 88 Pips Today: 0
  • Post #40,892
  • Quote
  • Nov 1, 2020 10:16pm Nov 1, 2020 10:16pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting simnz
Disliked
{quote} What is global variables? What do they do the proggramme? Why do they affect the PC speed? Appreciate if you can explain it or send a link to understand it. Thank you.
Ignored
it is just variable exposed as "Global" in client terminal to all programs running in MT4.
It shouldn't impact PC Speed at all.

Basically, each indicators scope is limited to each chart it is attached and each indicators/EA should have a domain/scope in its own.
When you shut down/turn off indicators... it also limit to its own.

However, some time, you want to have some kind of permanent variable that can be written or restored or shared with other indicators.
That is the "Global Variable" of Client.

https://book.mql4.com/variables/globals
I still don't know where is the Holy Grail
1
  • Post #40,893
  • Quote
  • Nov 1, 2020 10:51pm Nov 1, 2020 10:51pm
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 Posts
Quoting visobibi
Disliked
Hello, I have one EA working very nicely. I would like to add stop loss to that. Any body can help me regarding this issue. Thank you in advance Sobha {file}
Ignored
It seems this is a break out EA.

I added SL.. see if it works for you.
Attached File
File Type: mq4 gaps.mq4   5 KB | 99 downloads
I still don't know where is the Holy Grail
  • Post #40,894
  • Quote
  • Nov 1, 2020 10:57pm Nov 1, 2020 10:57pm
  •  RisingSun
  • Joined Jun 2007 | Status: trader | 1,720 Posts
Quoting RisingSun
Disliked
Hello Metatrader. I want the attached scripts to be opened by a row of buttons on screen. xy coordination and corner choice would be nice if provided. As you can see they are the scripts to execute buys or sells of various baskets. It is cumbersome to operate from the Navigator, hence my request. Thank you very much in advance for your kind help, if possible. Regards, RS{file}
Ignored
Any coders, would you be kind enough to help me out?
Thanks,
RS
Attached File
File Type: zip Scripts for basket trading.zip   80 KB | 70 downloads
  • Post #40,895
  • Quote
  • Nov 1, 2020 11:22pm Nov 1, 2020 11:22pm
  •  AngieT
  • | Joined Apr 2018 | Status: Member | 58 Posts
Quoting visobibi
Disliked
Hello, I have bought an EA from Fiverr. There is no stop loss. Anybody can help me to add a stop loss of 20 to this EA. It is a very good EA and can be used with very small accounts also. If there is a stop loss, we can trade safely. Thanking you in advance, Sobha {file}
Ignored

you can't change a ex4 file it is unreadable you need to ask for the mq4 typw file but I doubt they will give it to you
  • Post #40,896
  • Quote
  • Nov 2, 2020 12:00am Nov 2, 2020 12:00am
  •  simnz
  • Joined Nov 2015 | Status: Member | 1,503 Posts
Quoting BlueRain
Disliked
{quote} it is just variable exposed as "Global" in client terminal to all programs running in MT4. It shouldn't impact PC Speed at all. Basically, each indicators scope is limited to each chart it is attached and each indicators/EA should have a domain/scope in its own. When you shut down/turn off indicators... it also limit to its own. However, some time, you want to have some kind of permanent variable that can be written or restored or shared with other indicators. That is the "Global Variable" of Client. https://book.mql4.com/variables/globals...
Ignored
Thank you so much for your education and the link.
Practice makes a person perfect
Golden 88 Pips Today: 0
  • Post #40,897
  • Quote
  • Nov 2, 2020 12:41am Nov 2, 2020 12:41am
  •  lucky1359
  • Joined Nov 2018 | Status: Member | 722 Posts
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

Attached Image (click to enlarge)
Click to Enlarge

Name: ALL MONTHLY - WEEKLY - OCTOBER END 31.10 - SATURDAY.png
Size: 152 KB

Attached Image (click to enlarge)
Click to Enlarge

Name: MONTHLY OCTOBER END WEEKLY 31.10 - SATURDAY.png
Size: 112 KB

Have A Great Week Dear

Thanks & Regards
1
  • Post #40,898
  • Quote
  • Nov 2, 2020 12:48am Nov 2, 2020 12:48am
  •  BlueRain
  • Joined Sep 2019 | Status: Member | 828 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
Boy, that is a very complicated setup you have.
I still don't know where is the Holy Grail
  • Post #40,899
  • Quote
  • Nov 2, 2020 1:42am Nov 2, 2020 1:42am
  •  lucky1359
  • Joined Nov 2018 | Status: Member | 722 Posts
Quoting BlueRain
Disliked
{quote} Boy, that is a very complicated setup you have.
Ignored
Dear Blue Rain,

My Trading Setup is only MY Manual Fibos - Yearly - Monthly - Weekly - Daily
My Trades are on that setups starting from Day 1 and Week 1

See my Last weeks - Weekly Trade Setups and Daily Trade Setups with results
and the Best Part Manual Fibos do not Lie.

The Setups were done starting week and starting day and see the results
The candles respect the Fibo Lines and dance according to the levels
Please note each levels and see the result

All the other indicators support a lot for this setups.

Please guide me if something more knowledgeable can be added to it

Attached Image (click to enlarge)
Click to Enlarge

Name: LAST WEEK RESULT.png
Size: 126 KB

Attached Image (click to enlarge)
Click to Enlarge

Name: LAST WEEK DAILY RESULT.png
Size: 155 KB

Thanks & Regards
  • Post #40,900
  • Quote
  • Nov 2, 2020 2:09am Nov 2, 2020 2:09am
  •  Dave7878
  • | Joined Sep 2018 | Status: Member | 17 Posts
Quoting lucky1359
Disliked
{quote} Dear Blue Rain, My Trading Setup is only MY Manual Fibos - Yearly - Monthly - Weekly - Daily My Trades are on that setups starting from Day 1 and Week 1 See my Last weeks - Weekly Trade Setups and Daily Trade Setups with results and the Best Part Manual Fibos do not Lie. The Setups were done starting week and starting day and see the results The candles respect the Fibo Lines and dance according to the levels Please note each levels and see the result All the other indicators support a lot for this setups. Please guide me if something...
Ignored
interesting currency rank you have - what are those???
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 20432044Page 204520462047 2221
    • 1 Page 2045 2221
14 traders viewing now, 4 are members:
Ayong56
,
Invisible
,
leonelrichie
,
erex
  • 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