• Home
  • Forums
  • News
  • Calendar
  • Market
  • Login
  • Join
  • 12:12pm
Menu
  • Forums
  • News
  • Calendar
  • Market
  • Login
  • Join
  • 12:12pm
Sister Sites
  • Metals Mine
  • Crypto Craft
  • Forex Factory

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Add price to Fibo levels automatically using Set_Fibo_Price_Any_V 2.mq4 22 replies

Fibo Fibo Fibo 14 replies

fibo alert indicator - get alerts on fibo levels 4 replies

How do differentiate between Fibo and Fibo TimeZones? 4 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 5
Attachments: to take fibo ratio and extensions automatically
Exit Attachments
Tags: to take fibo ratio and extensions automatically
Cancel

to take fibo ratio and extensions automatically

  • Post #1
  • Quote
  • First Post: Dec 22, 2020 1:18am Dec 22, 2020 1:18am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,963 Posts
hi all... i created one indicator.. i donot know how to take automatically... so i given input from outside... if one has interest to help ..please make this input to automatically...
how to take.. it will be for weekly - means from year start.. first 5 candles... and not restrict with 5.. some time 3 candles i can choose... some time 2 candles.. sometime 1st candle also... so the automate high low taken for n number of candle from year start... because as per weekly the period separator will come every year once.
same for daily... from month start... here period separator comes monthly once..
same for h4 .. from week start... every week the period separator comes.. so first n number of candles.. choosing option is needed.
line styles... colors and all no need to change...

same for h1 and m30 and m15.. here the period separator are common.. daily once..
i given separate true or false to view lines .. so let it be..
this is for analysis purpose only and no buy sell signals generated.. so will be good to use ...

kindly if one helps... please provide with mql file.. so that i can learn.. how to do for automatic input taking method...

thanks in well advance..
Attached File(s)
File Type: mq4 JKFibo -Latest.mq4   53 KB | 492 downloads
Success is a Journey Not a Destination....... kind regards ramzam
  • Post #2
  • Quote
  • Jan 1, 2021 10:22am Jan 1, 2021 10:22am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,963 Posts
Quoting ramzam
Disliked
hi all... i created one indicator.. i donot know how to take automatically... so i given input from outside... if one has interest to help ..please make this input to automatically... how to take.. it will be for weekly - means from year start.. first 5 candles... and not restrict with 5.. some time 3 candles i can choose... some time 2 candles.. sometime 1st candle also... so the automate high low taken for n number of candle from year start... because as per weekly the period separator will come every year once. same for daily... from month start......
Ignored
any one help possible
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Post #3
  • Quote
  • Jan 1, 2021 1:40pm Jan 1, 2021 1:40pm
  •  hayseed
  • Joined Nov 2006 | Status: Member | 3,823 Posts
Quoting ramzam
Disliked
hi all... i created one indicator.. i donot know how to take automatically... so i given input from outside...
Ignored
//----

hey ramzam.... i'm not clear on what your huntin but if your wanting to avoid manually inputting the high, low and range for those periods, you could just load them all into an multi dimensional array....

or if your wanting the highest or lowest over a period of bars, use ihighest and ilowest... just use variable inputs for the section of bars.... those can be placed where needed.....

at might be difficult at first, but try using functions to reduce repetitive code..... otherwise you will kill yourself with hundreds of variable names......

example of loading multi dimensional values in script below.....h
//----


Inserted Code
    Whi = iHighest(NULL,10080,MODE_HIGH,aa,a);
    WLo = iLowest(NULL,10080,MODE_LOW,aa,a);
    WR  = Whi-WLo;   
    Dhi = iHighest(NULL,1440,MODE_HIGH,aa,a);
    DLo = iLowest(NULL,1440,MODE_LOW,aa,a);
    DR  = Dhi-DLo;
Attached File(s)
File Type: mq4 ramzam.mq4   1 KB | 461 downloads
to trade and code, keep both simple... no call to impress....h
 
 
  • Post #4
  • Quote
  • Jan 1, 2021 3:02pm Jan 1, 2021 3:02pm
  •  cdk1212
  • Joined Oct 2012 | Status: Member | 222 Posts
Hi Ramzam,
Not sure if this is something that you are looking for or you are wanting to build it yourself. I don't have the mql, only ex.


tks,
cdk

https://www.screencast.com/t/Eqef1Msggko
Attached File(s)
File Type: ex4 boxfibo1_2.ex4   13 KB | 393 downloads
 
 
  • Post #5
  • Quote
  • Jan 1, 2021 5:49pm Jan 1, 2021 5:49pm
  •  hayseed
  • Joined Nov 2006 | Status: Member | 3,823 Posts
Quoting ramzam
Disliked
please provide with mql file.. so that i can learn..
Ignored
//----

hey ramzam..... here is a slightly extended version..... still a small amount of code.... it will plot about a dozen of your lines from 240, 1440, timeframes.....

including smaller tf's would only take seconds..... adding labels few seconds more..... as is, placing the mouse pointer over the line gives the lines description....

functions such as those greatly reduces the repetitive code while wording it in easy to grasp lines....

eventually you will get to where you can write it in your mind.....h
//-----

Attached Image (click to enlarge)
Click to Enlarge

Name: eurusd-h4-oanda-division1-ramzam-draw.png
Size: 46 KB
Attached File(s)
File Type: mq4 ramzam with draw.mq4   2 KB | 508 downloads
to trade and code, keep both simple... no call to impress....h
 
1
  • Post #6
  • Quote
  • Jan 2, 2021 12:38am Jan 2, 2021 12:38am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,963 Posts
i will check these files. and will reply soon
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Post #7
  • Quote
  • Jan 2, 2021 12:40am Jan 2, 2021 12:40am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,963 Posts
Quoting cdk1212
Disliked
Hi Ramzam, Not sure if this is something that you are looking for or you are wanting to build it yourself. I don't have the mql, only ex. tks, cdk https://www.screencast.com/t/Eqef1Msggko {file}
Ignored
it will be like that only.. for the day week h4 h1 m30 m15 i wrote.. but i am not have the enough knowledge to do this type of box ...so i given manual input... if it takes like this automatic... well and good..
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Post #8
  • Quote
  • Jan 2, 2021 6:56am Jan 2, 2021 6:56am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,963 Posts
Quoting hayseed
Disliked
{quote} //---- hey ramzam..... here is a slightly extended version..... still a small amount of code.... it will plot about a dozen of your lines from 240, 1440, timeframes..... including smaller tf's would only take seconds..... adding labels few seconds more..... as is, placing the mouse pointer over the line gives the lines description.... functions such as those greatly reduces the repetitive code while wording it in easy to grasp lines.... eventually you will get to where you can write it in your mind.....h //----- {image} {file}
Ignored
i am understand how to attach these lines... infact i dont know...
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Post #9
  • Quote
  • Jan 2, 2021 9:23am Jan 2, 2021 9:23am
  •  hayseed
  • Joined Nov 2006 | Status: Member | 3,823 Posts
Quoting ramzam
Disliked
{quote} i am understand how to attach these lines... infact i dont know...
Ignored
//----

hey ramzam.... in post 5 above it's a script.... put in your scripts folder.... once you have a chart open, like eurusd 240 chart, just double click that script or click hold and drag it onto your chart.....

just to show you how to use functions to reduce code....h
to trade and code, keep both simple... no call to impress....h
 
 
  • Post #10
  • Quote
  • Last Post: Jan 4, 2021 8:46am Jan 4, 2021 8:46am
  •  ramzam
  • Joined Nov 2015 | Status: Member | 2,963 Posts
then i need to attach every time... that is hectic again... i want automatic input for that purpose... so i can use any charts just change chart to chart...
Success is a Journey Not a Destination....... kind regards ramzam
 
 
  • Platform Tech
  • /
  • to take fibo ratio and extensions automatically
  • Reply to Thread
0 traders viewing now
Top of Page
  • Facebook
  • Twitter
About EE
  • Mission
  • Products
  • User Guide
  • Blog
  • Contact
EE Products
  • Forums
  • Calendar
  • News
  • Market
EE Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow EE
  • Facebook
  • Twitter

EE Sister Sites:

  • Metals Mine
  • Crypto Craft
  • Forex Factory

Energy EXCH™ is a brand of Fair Economy, Inc.

Terms of Service / ©2023