• Home
  • Forums
  • News
  • Calendar
  • Coins
  • Market
  • Login
  • Join
  • 4:17am
Menu
  • Forums
  • News
  • Calendar
  • Coins
  • Market
  • Login
  • Join
  • 4:17am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Forex Factory

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

I will code your scalping EAs for no charge 118 replies

Oanda MT4 - Indicators and EAs not showing 2 replies

I will code your pivot EAs for no charge 20 replies

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
  • 44,700
Attachments: I will code your EAs and Indicators for no charge
Exit Attachments
Tags: I will code your EAs and Indicators for no charge
Cancel

I will code your EAs and Indicators for no charge

  • Last Post
  •  
  • 1 32313232Page 323332343235 3243
  • 1 Page 3233 3243
  •  
  • Post #64,641
  • Quote
  • Nov 17, 2023 5:13am Nov 17, 2023 5:13am
  •  Bjos-Fx
  • | Joined Aug 2023 | Status: Junior Member | 5 Posts
Quoting BestTraderEv
Disliked
{quote} Of course it can be done if you provide the specific conditions. Your image isn't clear at all I will remind you that all we have are OHLC prices of candles, and we must find a pattern by comparing those prices in relation to previous candle(s). So, you need to provide more information that what you show in your image.
Ignored
PLEASE, help me make this indicator mtf
Attached File(s)
File Type: mq4 StepMA pdf nmc 3.142 + arrows.mq4   18 KB | 88 downloads
 
 
  • Post #64,642
  • Quote
  • Nov 17, 2023 5:19am Nov 17, 2023 5:19am
  •  Nod32
  • Joined Aug 2020 | Status: Member | 239 Posts
Box power buyers sellers
Attached Image (click to enlarge)
Click to Enlarge

Name: Power Trade Indicator.png
Size: 12 KB
 
 
  • Post #64,643
  • Quote
  • Nov 17, 2023 5:21am Nov 17, 2023 5:21am
  •  daggi22
  • | Joined Sep 2022 | Status: Member | 14 Posts
Quoting BestTraderEv
Disliked
{quote} Of course it can be done if you provide the specific conditions. Your image isn't clear at all I will remind you that all we have are OHLC prices of candles, and we must find a pattern by comparing those prices in relation to previous candle(s). So, you need to provide more information that what you show in your image.
Ignored
Thank you again.

What I need is as shown in scenario below:
There are 3 candles I want to watch mainly on H4/Daily/Weekly Time Frame

Candle 1 is say previous day candle
Candle 2 Sweeps Candle 1 Low/High
Candle 3 3 Fails to sweep Candle 2 Low/High but closed above candle 2 closing price or High or Low at the end of market close.

This indicates reversal on HTF and normally the 4th Candle creates a large range day.
So I 'd like an indicator that can spot this and probably draw a shaded rectangle of the 3 Candles.

I hope am clear.
Thanks
 
 
  • Post #64,644
  • Quote
  • Nov 17, 2023 5:23am Nov 17, 2023 5:23am
  •  veter
  • Joined Dec 2018 | Status: Member | 177 Posts
Quoting BestTraderEv
Disliked
{quote} The original logic for opening trades is: if(TradeStyle==Original) { if (LB<=LS && Bid>HighBox && Bid<HighBox+10*Point && HighBox!=0) { if(SendOrder(OP_BUY, MaxLot==0?Lot:MaxLot*2, NormalizeDouble(Ask,Digits))) TimeBar=Time[0]; } if (LB>=LS && Bid<LowBox && Bid>LowBox-10*Point) { if(SendOrder(OP_SELL, MaxLot==0?Lot:MaxLot*2, NormalizeDouble(Bid,Digits))) TimeBar=Time[0]; } } This means that a Buy order is placed when Bid is above Rectangle High and below Rectangle High + 10 points. A Sell order is placed when Bid is below Rectangle Low and...
Ignored
I didn't know that I can use a rectangle upside down, I'll try this function later, thanks! I've never turned it over before. At this stage I am testing the latest version оnclose mode. Thanks, you are really Best!
 
 
  • Post #64,645
  • Quote
  • Nov 17, 2023 6:57am Nov 17, 2023 6:57am
  •  acetrader
  • Joined Feb 2006 | Status: Member | 1,852 Posts
Quoting acetrader
Disliked
To all the kind skilled coders I have a request for in indicator. After 65 candles move up or down the indicator would mark the High or Low candle as follows. Exceed High of the Lowest Low = Buy. This is for the DOWN move of the 65 candles. Exceed Low of the Highest High = Sell. This is for the UP move of the of the 65 candles. Thank you to anyone that would code this indicator as it will be most appreciated.
Ignored

Hi BestTraderEv,

Would you code this indicator for me. It would be most appreciated. Thank you.
 
 
  • Post #64,646
  • Quote
  • Edited 8:21am Nov 17, 2023 7:03am | Edited 8:21am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,734 Posts
Quoting daggi22
Disliked
{quote} Thank you again. What I need is as shown in scenario below: There are 3 candles I want to watch mainly on H4/Daily/Weekly Time Frame Candle 1 is say previous day candle Candle 2 Sweeps Candle 1 Low/High Candle 3 3 Fails to sweep Candle 2 Low/High but closed above candle 2 closing price or High or Low at the end of market close. This indicates reversal on HTF and normally the 4th Candle creates a large range day. So I 'd like an indicator that can spot this and probably draw a shaded rectangle of the 3 Candles. I hope am clear. Thanks
Ignored
Let me explain what the code sees according to the image you posted:
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 6 KB

Close[1]<Open[1] and
Close[2]>Open[2] and
Close[3]>Open[3] and
Open[2]<Close[1] and
Close[2]>Close[1] and
Close[2]<Open[1] and
Low[2]<Low[1] and
High[2]<High[1] and
High[2]>Open[1] and
Low[3]>Low[2] and
Low[3]>Low[1] and
Open[3]<Open[1] and
Open[3]<Close[1] and
High[3]>High[2] and
High[3]>High[1] and
Close[3]>High[2] and
Close[3]>High[1]

That should be the full, specific description of the 3 candles in this image.
This is a very specific pattern, one of a kind, most probably.
Could be the only one in the whole history of this specific chart and for this specific broker's quotations.

Can you see the problem, now?

PS. In this image High of Candle 2 does not "sweep" the High of Candle 1.
And you say that "Candle 3 fails to "sweep" Candle 2 - and what does that mean???
So, still not clear what exactly you want???
 
 
  • Post #64,647
  • Quote
  • Nov 17, 2023 7:04am Nov 17, 2023 7:04am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,734 Posts
Quoting Nod32
Disliked
Box power buyers sellers {image}
Ignored
Nice image...
What about it?
 
 
  • Post #64,648
  • Quote
  • Nov 17, 2023 7:10am Nov 17, 2023 7:10am
  •  carbonmimeti
  • Joined Jun 2012 | Status: Member | 612 Posts
Quoting carbonmimeti
Disliked
latest image now: AUDUSD 15 min chart {image}
Ignored
Hello jeanlouie,
from post 64634:
AUDUSD 15 min scaled chart:from the last downward swing I draw the usual 2 circles: in this case the top was missed by 3 bars but with the expansion of the root by 2 it was fully centered.
at this moment it seems to have made a minimum on the setup bar
I seriously think that geometric trading has enormous potential and I'm surprised that no one on this forum uses geometric figures
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: A.gif
Size: 21 KB
Click to Enlarge

Name: B.gif
Size: 19 KB
 
 
  • Post #64,649
  • Quote
  • Nov 17, 2023 7:32am Nov 17, 2023 7:32am
  •  d.dalal333
  • | Joined Jan 2013 | Status: Member | 71 Posts
I AM LOOKING TO HAVE YOUR HELP TO MAKE EA

ON "HEIKEN ASHI SMOOTH" with EMA OF 3,5,8,15,50,100,200

THE CRITERIA IS AS UNDER
ON CROSSOVER
3,5,8 1 ST TRADE
3 ,15 2ND TRADE TRADE WILL OPEN
3,50 3RD TRADE WILL WILL OPEN
3,100 4TH TRADE WILL OPEN
3,200 5TH TRADE SHOULD OPEN

WHEN ITS CHANGE COLOUR TRADE SQ. OFF
i.e green to red or red to green. (BUY TO SELL OR SELL TO BUY) WHEN TRANDE CHANGE

from sq off position visa a versa -

next candle the above formula apply for new trade

NEED HELP TO MAKE EA MQL FOR MT4 & MT5.
 
 
  • Post #64,650
  • Quote
  • Nov 17, 2023 8:28am Nov 17, 2023 8:28am
  •  Nod32
  • Joined Aug 2020 | Status: Member | 239 Posts
Quoting BestTraderEv
Disliked
{quote} Nice image... What about it?
Ignored
Attached File(s)
File Type: ex4 Power Trade Indicator MT4.ex4   14 KB | 215 downloads
 
 
  • Post #64,651
  • Quote
  • Nov 17, 2023 8:39am Nov 17, 2023 8:39am
  •  Nod32
  • Joined Aug 2020 | Status: Member | 239 Posts
for example: EA
IF trend = downward trend
IF Seller >= 70%
Signal = Sell
Attached Image (click to enlarge)
Click to Enlarge

Name: aaa.png
Size: 9 KB
 
 
  • Post #64,652
  • Quote
  • Edited 9:55am Nov 17, 2023 8:48am | Edited 9:55am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,734 Posts
Quoting acetrader
Disliked
{quote} Hi BestTraderEv, Would you code this indicator for me. It would be most appreciated. Thank you.
Ignored
Does this make any sense to you?
Attached Image (click to enlarge)
Click to Enlarge

Name: 2023-11-17_144729.jpg
Size: 200 KB

Each of those arrows meets your conditions...

It looks better if I do something, but still, is it worth the time?
Attached Image (click to enlarge)
Click to Enlarge

Name: 2023-11-17_155523.jpg
Size: 147 KB
 
 
  • Post #64,653
  • Quote
  • Nov 17, 2023 8:54am Nov 17, 2023 8:54am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,734 Posts
Quoting Nod32
Disliked
{quote} {file}
Ignored
That's a commercial indicator, costs $80 here:
https://www.mql5.com/en/market/produ...ource=External

I can't run it without a licence.
 
 
  • Post #64,654
  • Quote
  • Nov 17, 2023 9:13am Nov 17, 2023 9:13am
  •  Sidtrading
  • | Joined Jan 2021 | Status: Member | 30 Posts
Hi Traders,

Can anyone be able to add a button to this MT5 indicator.

I tried my best but failed.


Please help!!

Regards
Sid
Attached File(s)
File Type: mq5 WyattsPivots.mq5   46 KB | 39 downloads
 
 
  • Post #64,655
  • Quote
  • Nov 17, 2023 9:38am Nov 17, 2023 9:38am
  •  Nod32
  • Joined Aug 2020 | Status: Member | 239 Posts
Quoting BestTraderEv
Disliked
{quote} That's a commercial indicator, costs $80 here: https://www.mql5.com/en/market/produ...ource=External I can't run it without a licence.
Ignored
Attached File(s)
File Type: ex4 German Sniper Indicator V1.ex4   92 KB | 215 downloads
 
 
  • Post #64,656
  • Quote
  • Nov 17, 2023 9:38am Nov 17, 2023 9:38am
  •  cpips
  • | Joined Aug 2016 | Status: Member | 80 Posts
Dear BestTraderEv,

can you please take a look at this indicator when you are free,
this indicator does not refresh when candle closed.(so no new signal)
thank you so much,
Attached File(s)
File Type: mq4 123PatternsV6.03 & mtf nmc.mq4   21 KB | 69 downloads
 
 
  • Post #64,657
  • Quote
  • Nov 17, 2023 11:29am Nov 17, 2023 11:29am
  •  salman1
  • | Joined Aug 2009 | Status: Member | 8 Posts
Quoting Nod32
Disliked
{quote} {file}
Ignored
Is this not a RADAR indicator?
 
 
  • Post #64,658
  • Quote
  • Nov 17, 2023 11:36am Nov 17, 2023 11:36am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,734 Posts
Quoting Sidtrading
Disliked
Hi Traders, Can anyone be able to add a button to this MT5 indicator. I tried my best but failed. Please help!! Regards Sid {file}
Ignored
Attached File(s)
File Type: mq5 WyattsPivots_BTN.mq5   53 KB | 47 downloads
 
 
  • Post #64,659
  • Quote
  • Nov 17, 2023 11:45am Nov 17, 2023 11:45am
  •  BestTraderEv
  • Joined Mar 2022 | Status: Member | 1,734 Posts
Quoting cpips
Disliked
Dear BestTraderEv, can you please take a look at this indicator when you are free, this indicator does not refresh when candle closed.(so no new signal) thank you so much, {file}
Ignored
Try this one first:
Attached File(s)
File Type: mq4 1-2-3 Pattern MTF v3.1.mq4   24 KB | 115 downloads

Also have:
Attached File(s)
File Type: mq4 123PatternsV6.mq4   14 KB | 82 downloads

Attached File(s)
File Type: mq4 123PatternsV7.mq4   12 KB | 121 downloads
 
 
  • Post #64,660
  • Quote
  • Nov 17, 2023 11:57am Nov 17, 2023 11:57am
  •  classy
  • Joined Jun 2012 | Status: Trader , Analyst and Mentor | 5,043 Posts
Quoting tintep
Disliked
{quote} hi kivanc. Try this . I load on ff . I think it same you want. {file} {file}
Ignored

hi bro would you consider to create one dashboard based on engulfing candle please
Say something meaningful or Silence!!
 
 
  • Platform Tech
  • /
  • I will code your EAs and Indicators for no charge
  • Reply to Thread
    • 1 32313232Page 323332343235 3243
    • 1 Page 3233 3243
53 traders viewing now, 8 are members:
Uru
,
lywer
,
stevo1735
,
rappymuinde
,
Ja3
,
Rafama007
,
xmatax
,
Oracheal
  • More
Top of Page
  • Facebook
  • Twitter
About CC
  • Mission
  • Products
  • User Guide
  • Blog
  • Contact
CC Products
  • Forums
  • Calendar
  • News
  • Coins
  • Market
CC Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow CC
  • Facebook
  • Twitter

CC Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Forex Factory

Crypto Craft® is a brand of Fair Economy, Inc.

Terms of Service / ©2023