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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

People waiting for Chrismas, I'm waiting for FOMC 0 replies

Thoughts/Thought Experiments on Money Management and Trading 10 replies

DmitryFX's trading experiments 20 replies

Order Comment blank after order closed 4 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 558
Attachments: Experiments - while waiting for an order to get closed
Exit Attachments
Tags: Experiments - while waiting for an order to get closed
Cancel

Experiments - while waiting for an order to get closed

  • Last Post
  •  
  • 1 363738Page 3940 41
  • 1 38Page 3940 41
  •  
  • Post #761
  • Quote
  • Apr 29, 2022 11:42pm Apr 29, 2022 11:42pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,421 Posts
Quoting Dulat
Disliked
{quote} Try the built-in WPR indicator. double Indi=100-MathAbs(iWPR(NULL,0,period,i)); if (Ind>70) Buy if (Ind<30) Sell I have never seen a faster WPR.mq4 and CHO.mq4 indicator.
//+------------------------------------------------------------------+ //| TrendFlat.mq4 | //| Pulse Flat Copyright 2008 Arney Derick | //| updated version Copyright 2022.04.22 Almaty, Qazaqstan | //+------------------------------------------------------------------+ #property copyright " 2022 Almaty Qazaqstan" #property link "http://www.mql4.com" #property description...
Ignored
I doubts it is the same chart display (symbol,time frame,location) you posted for us newbie learners,thanks
here
https://www.forexfactory.com/thread/...6#post13986486
Attached Image (click to enlarge)
Click to Enlarge

Name: AUDUSDH1 (1).png
Size: 25 KB


Attached Image (click to enlarge)
Click to Enlarge

Name: AUDUSDH1.png
Size: 35 KB
 
1
  • Post #762
  • Quote
  • Apr 30, 2022 1:46am Apr 30, 2022 1:46am
  •  Dulat
  • | Joined Apr 2022 | Status: Member | 26 Posts
Quoting mntiwana
Disliked
{quote} I doubts it is the same chart display (symbol,time frame,location) you posted for us newbie learners,thanks here https://www.forexfactory.com/thread/...6#post13986486 {image} {image}
Ignored

I didn't mean to offend you. Criticism is always helpful. Well, you're not new.
And how is your indicator different from this useless indicator?

Attached Image (click to enlarge)
Click to Enlarge

Name: AUDUSDH1.png
Size: 23 KB
Have questions? I have them too. :-)
 
 
  • Post #763
  • Quote
  • Apr 30, 2022 2:15am Apr 30, 2022 2:15am
  •  mladen
  • Joined Apr 2007 | Status: ... | 801 Posts
Guys, please ...
Without any intention to start any dispute (in the world that we live in, yet another dispute is the last thing we need), flooding the thread with some stuff unrelated to what was actually posted at this thread does not help anybody
______________________________

@Dulat : without any intention to start any dispute, if you are using new metatrader 4 format, why not doing it consistently?
I mean this part :
Inserted Code
   int counted_bars=IndicatorCounted();
   if (counted_bars<0) return(-1);
   if (counted_bars>0) counted_bars--;
   int limit=Bars-(PrdAtr+PrdStd)-1;
   if(counted_bars>=(PrdAtr+PrdStd+1)) limit=Bars-counted_bars-1;
that can be replaced with this :
Inserted Code
   int limit = (prev_calculated>0) ? rates_total-prev_calculated : rates_total-1;
The code is doing exactly the same thing, and with the assumption that the built in functions are doing the calculation correctly, nothing else is needed
_____________________

And by changing this line :
Inserted Code
bbs  = atr/std;
to this (since standard deviation of first calculated bar is 0) :
Inserted Code
bbs  = (std) ? atr/std : 0;
you have it 100% new metatrader compatible (at least the loop)
_____________________

Old metatrader 4 was as it was. Why not using what new metatrader 4 offers us (and it is not just cosmetic changes)?
 
3
  • Post #764
  • Quote
  • Edited 3:08am Apr 30, 2022 2:18am | Edited 3:08am
  •  Dulat
  • | Joined Apr 2022 | Status: Member | 26 Posts
Quoting mntiwana
Disliked
{}
Ignored
The branch is called experiment?
I'm sorry, I'm leaving.
Have questions? I have them too. :-)
 
 
  • Post #765
  • Quote
  • Edited 3:09am Apr 30, 2022 2:41am | Edited 3:09am
  •  Dulat
  • | Joined Apr 2022 | Status: Member | 26 Posts
Quoting mladen
Disliked
______________________________ @Dulat : without any intention to start any dispute, if you are using new metatrader 4 format, why not doing it consistently? I mean this part : int counted_bars=IndicatorCounted(); if (counted_bars<0) return(-1); if (counted_bars>0) counted_bars--; int limit=Bars-(PrdAtr+PrdStd)-1; if(counted_bars>=(PrdAtr+PrdStd+1)) limit=Bars-counted_bars-1; that can be replaced with this : int limit = (prev_calculated>0) ? rates_total-prev_calculated : rates_total-1; The code is doing exactly the same thing, and with the assumption...
Ignored
Thank you friend.
Have questions? I have them too. :-)
 
 
  • Post #766
  • Quote
  • Apr 30, 2022 7:12am Apr 30, 2022 7:12am
  •  jacryptoking
  • | Joined Jan 2021 | Status: Member | 106 Posts
Quoting mntiwana
Disliked
{quote} I doubts it is the same chart display (symbol,time frame,location) you posted for us newbie learners,thanks here https://www.forexfactory.com/thread/...6#post13986486 {image} {image}
Ignored
The trend flat indicator is there a Higher TF feature?

Also the oscillator above u need to code it so it detect divergence

Using fractal pattern of H_Close and Low_close .
 
 
  • Post #767
  • Quote
  • Apr 30, 2022 7:15am Apr 30, 2022 7:15am
  •  jacryptoking
  • | Joined Jan 2021 | Status: Member | 106 Posts
Quoting Dulat
Disliked
{quote} I didn't mean to offend you. Criticism is always helpful. Well, you're not new. And how is your indicator different from this useless indicator? {image}
Ignored
When the Moving average is Smooth like that u have to try and identify the divergence and structure of the smoothing of the moving Average to better analyze it and make it useful.
 
 
  • Post #768
  • Quote
  • Apr 30, 2022 7:47am Apr 30, 2022 7:47am
  •  jacryptoking
  • | Joined Jan 2021 | Status: Member | 106 Posts
Quoting mladen
Disliked
Guys, please ... Without any intention to start any dispute (in the world that we live in, yet another dispute is the last thing we need), flooding the thread with some stuff unrelated to what was actually posted at this thread does not help anybody ______________________________ @Dulat : without any intention to start any dispute, if you are using new metatrader 4 format, why not doing it consistently? I mean this part : int counted_bars=IndicatorCounted(); if (counted_bars<0) return(-1); if (counted_bars>0) counted_bars--; int limit=Bars-(PrdAtr+PrdStd)-1;...
Ignored

Here in the image the lowest close of macd form support while it form Resistance on chart price as macd average higher close price and chart average lower close price .

Then while macd was averaging higher close prices it was creating Hidden Divergence. Macd closes were higher than chart price .

The last high_close candle/bar price of the fractal pattern (of if the fractal candle close up it is use ) this is peak.

This level can be use as a resistance (MACD Resistance level)

Once macd closes(bars) break a pervious high close that becomes Resistance once price reject or close Then it confirm as Divergence


This is 90% accuracy for me ..
Attached Image (click to enlarge)
Click to Enlarge

Name: IMG_20220430_063801_202.jpg
Size: 110 KB
 
1
  • Post #769
  • Quote
  • Apr 30, 2022 11:55am Apr 30, 2022 11:55am
  •  jacryptoking
  • | Joined Jan 2021 | Status: Member | 106 Posts
Quoting mladen
Disliked
Guys, please ... Without any intention to start any dispute (in the world that we live in, yet another dispute is the last thing we need), flooding the thread with some stuff unrelated to what was actually posted at this thread does not help anybody ______________________________ @Dulat : without any intention to start any dispute, if you are using new metatrader 4 format, why not doing it consistently? I mean this part : int counted_bars=IndicatorCounted(); if (counted_bars<0) return(-1); if (counted_bars>0) counted_bars--; int limit=Bars-(PrdAtr+PrdStd)-1;...
Ignored

Here in the image the lowest close of macd form support while it form Resistance on chart price as macd average higher close price and chart average lower close price .

Then while macd was averaging higher close prices it was creating Hidden Divergence. Macd closes were higher than chart price .

The last high_close candle/bar price of the fractal pattern (of if the fractal candle close up it is use ) this is peak.

This level can be use as a resistance (MACD Resistance level)

Once macd closes(bars) break a pervious high close that becomes Resistance once price reject or close Then it confirm as Divergence


This is 90% accuracy for me ..
Attached Image (click to enlarge)
Click to Enlarge

Name: IMG_20220430_063801_202.jpg
Size: 110 KB
 
 
  • Post #770
  • Quote
  • Apr 30, 2022 12:04pm Apr 30, 2022 12:04pm
  •  jacryptoking
  • | Joined Jan 2021 | Status: Member | 106 Posts
Quoting ionone
Disliked
{quote} why you punish the "good ones" for the behaviour of the "bad ones" is out of me I publish all the codes offf my indicators without sissying
Ignored
Can u experiment on developing indicator to identify and highlight divergence when they Occurs ?
 
 
  • Post #771
  • Quote
  • Apr 30, 2022 12:11pm Apr 30, 2022 12:11pm
  •  jacryptoking
  • | Joined Jan 2021 | Status: Member | 106 Posts
Quoting mladen
Disliked
Same thing - just metatrader 5 version {image} {file} {file}
Ignored

This would work very good with divergence that code the right way.
 
 
  • Post #772
  • Quote
  • Apr 30, 2022 1:42pm Apr 30, 2022 1:42pm
  •  Dulat
  • | Joined Apr 2022 | Status: Member | 26 Posts
Quoting jacryptoking
Disliked
{quote} When the Moving average is Smooth like that u have to try and identify the divergence and structure of the smoothing of the moving Average to better analyze it and make it useful.
Ignored
So many filters have been invented from digital to built-in. Here is one experiment posted in the next thread for discussion.

https://www.forexfactory.com/thread/...4#post13986854

There is also such an anti-aliasing filter.

Inserted Code
//+------------------------------------------------------------------+
//| returns the requested filter with the degree of smoothing        |
//+------------------------------------------------------------------+
double SP1(int i)
  {
//----
  double res =
  0.363644232288*B1[i]
 +0.319961361319*B1[i+1]
 +0.2429021537279*B1[i+2]
 +0.1499479402208*B1[i+3]
 +0.0606476023757*B1[i+4]
 -0.00876136797274*B1[i+5]
 -0.0492967601969*B1[i+6]
 -0.0606402244647*B1[i+7]
 -0.0496978153976*B1[i+8]
 -0.02724932305397*B1[i+9]
 -0.00400372352396*B1[i+10]
 +0.01244416185618*B1[i+11]
 +0.01927941647120*B1[i+12]
 +0.01821767237980*B1[i+13]
 +0.01598780862402*B1[i+14]
 -0.00338313465225*B1[i+15];
//----      
return(res);}
Have questions? I have them too. :-)
 
 
  • Post #773
  • Quote
  • Jun 5, 2022 2:43pm Jun 5, 2022 2:43pm
  •  andreworcia
  • | Joined May 2022 | Status: Junior Member | 4 Posts
Quoting mladen
Disliked
Just some fooling around ... This was available as two separate scripts since long ago (I frankly do not remember who was the first to make it, since then some changes were made in the code). This is made as indicator to use as simple as it gets : arrange the windows to your liking and press the button to toggle window borders on or off. When you turn them off, then your charts can look like this (this indicator is in the lower right corner of the example - the button there) {image} {file}
Ignored
Hello. I have seen here in the forum that the Toggle borders indicator does not work correctly in MT5 (I found a downloadable version for MT5).
Is there an update that fixes this problem? Thanks
 
 
  • Post #774
  • Quote
  • Aug 26, 2022 7:58am Aug 26, 2022 7:58am
  •  v2vboni
  • Joined Sep 2015 | Status: ob-la-di, ob-la-da, life goes on... | 3,682 Posts | Online Now
Quoting mntiwana
Disliked
{quote} Hi Boss,it looks like yet faster enough (the smoothed step) - {image}
Ignored
This SmoothStep is really something else... Thanks, mladen!
Since Frank Sinatra sings in his own way, my chart sing... I did it, my way
 
 
  • Post #775
  • Quote
  • Aug 26, 2022 8:02am Aug 26, 2022 8:02am
  •  v2vboni
  • Joined Sep 2015 | Status: ob-la-di, ob-la-da, life goes on... | 3,682 Posts | Online Now
Quoting mladen
Disliked
In his article in February 2022 issue of TASC, “An Elegant Oscillator: Inverse Fisher Transform Redux,” author John Ehlers explains how he uses the inverse Fisher transform to create an indicator he calls the elegant oscillator. This is the metatrader 5 version of it PS: do take some time to experiment with the parameters (see the difference between the example 2 : default (red) and 100,100 (blue) - a lot of room to experiment) {image} {file}
Ignored
...and this one as well. Is truly amazing.
Since Frank Sinatra sings in his own way, my chart sing... I did it, my way
 
 
  • Post #776
  • Quote
  • Edited Sep 11, 2022 5:15am Sep 10, 2022 8:07pm | Edited Sep 11, 2022 5:15am
  •  mladen
  • Joined Apr 2007 | Status: ... | 801 Posts
Indicator based on TASC August 2022 issue by Vitraly Apirine : "The Linear Regression-Adjusted Exponential Moving Average"

Attached Image (click to enlarge)
Click to Enlarge

Name: Capture.png
Size: 55 KB


Gray line is the "regular" ema, added to example as a comparison to the "Linear Regression-Adjusted Exponential Moving Average".
______________________

The higher the sensitivity, the "faster" (as in response to price changes) the average is. Sensitivity 0 makes it equal to EMA
Colors are based on slope change (not the crosses with the EMA , since the indicator itself does not draws ema).
Use it as any other moving average
Attached File(s)
File Type: ex5 Linear Regression-Adjusted Exponential Moving Average.ex5   19 KB | 149 downloads
 
3
  • Post #777
  • Quote
  • Sep 12, 2022 10:44am Sep 12, 2022 10:44am
  •  mladen
  • Joined Apr 2007 | Status: ... | 801 Posts
Quoting mladen
Disliked
Indicator based on TASC August 2022 issue by Vitraly Apirine : "The Linear Regression-Adjusted Exponential Moving Average" {image} Gray line is the "regular" ema, added to example as a comparison to the "Linear Regression-Adjusted Exponential Moving Average". ______________________ The higher the sensitivity, the "faster" (as in response to price changes) the average is. Sensitivity 0 makes it equal to EMA Colors are based on slope change (not the crosses with the EMA , since the indicator itself does not draws ema). Use it as any other moving average...
Ignored
Same thing as above just MT4 version
Attached File(s)
File Type: ex4 Linear Regression-Adjusted Exponential Moving Average.ex4   27 KB | 199 downloads
 
4
  • Post #778
  • Quote
  • Edited 3:18pm Sep 16, 2022 9:24am | Edited 3:18pm
  •  Botan626
  • Joined Sep 2016 | Status: --- | 1,109 Posts
Quoting mladen
Disliked
In his article in February 2022 issue of TASC, “An Elegant Oscillator: Inverse Fisher Transform Redux,” author John Ehlers explains how he uses the inverse Fisher transform to create an indicator he calls the elegant oscillator. This is the metatrader 5 version of it PS: do take some time to experiment with the parameters (see the difference between the example 2 : default (red) and 100,100 (blue) - a lot of room to experiment) {image} {file}
Ignored
Added:
1) MTF,
2) Signal line,
3) More price choices,
4) Optional dots indicating bar close,
5) Zero line (for better visualization),
6) 2 color sets,
7) 2 modes to change oscillator line color.
Attached File(s)
File Type: mq5 Elegant oscillator (mtf).mq5   39 KB | 107 downloads
 
2
  • Post #779
  • Quote
  • Sep 29, 2022 2:45pm Sep 29, 2022 2:45pm
  •  Alibomaye
  • | Joined Sep 2022 | Status: Junior Member | 2 Posts
Does anybody know the name of those indicators if so it's possible that they make them NON REPAINT please? They were made by MLADEN. Thank you!
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 3 KB
Click to Enlarge

Name: screenshot.png
Size: 4 KB
 
 
  • Post #780
  • Quote
  • Sep 29, 2022 6:07pm Sep 29, 2022 6:07pm
  •  mntiwana
  • Joined Mar 2013 | Status: Member | 2,421 Posts
Quoting Alibomaye
Disliked
Does anybody know the name of those indicators if so it's possible that they make them NON REPAINT please? They were made by MLADEN. Thank you! {image} {image}
Ignored
Post full (complete) pictures of those,if possible
 
 
  • Platform Tech
  • /
  • Experiments - while waiting for an order to get closed
  • Reply to Thread
    • 1 363738Page 3940 41
    • 1 38Page 3940 41
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