
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi there,
Thanks for the indicator :) Just want to ask, is it possible to edit to mq4 file to include 78.6% instead of 76.4%?
hello. sure. you just have to change in your meta_editor:
This:
Fib6[summabars-k]=H-(W*0.764)
in that:
Fib6[summabars-k]=H-(W*0.786)
and same on those two line: change 76.4 in 78.6
ObjectCreate("FibLevel6",OBJ_TEXT,0,Time[0],Fib6[0]);
ObjectSetText("FibLevel6",StringConcatenate(" 76.4% - ",DoubleToStr(Fib6[0],DisplayDec)),8,"Tahoma",TextColor);
ObjectCreate("FibLevel1",OBJ_TEXT,0,Time[0],Fib1[0]);
ObjectSetText("FibLevel1",StringConcatenate(" 76.4% - ",DoubleToStr(Fib1[0],DisplayDec)),8,"Tahoma",TextColor);
save and enjoy ;-)