Percentage Crossover Channel indicator

Here you can post and download custom indicators. PLEASE: Do not start topics unless you are posting your own indicator, they will be moved to appropriate section even if you do.

Moderator: admin

Percentage Crossover Channel indicator

Postby Alexander.Gettinger » Sun Dec 25, 2011 3:02 pm

This indicator is a ported MQL5 indicator from http://www.mql5.com/en/code/689.

Percentage_Crossover_Channel.png


Download:
Percentage_Crossover_Channel.lua
(2.66 KiB) Downloaded 1308 times


The indicator was revised and updated
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: Percentage Crossover Channel indicator

Postby Alexander.Gettinger » Mon Dec 26, 2011 7:17 am

Strategy based on Percentage Crossover Channel indicator: viewtopic.php?f=31&t=10452
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: Percentage Crossover Channel indicator

Postby massarde » Tue May 29, 2012 2:54 am

Would be possible some alert with email and sound if the candle touches or crosses the middle line?
I think this indicator is the best that i got so far. simple and efficient.
Thanks.
massarde
 
Posts: 3
Joined: Fri Mar 30, 2012 3:20 pm

Re: Percentage Crossover Channel indicator

Postby Apprentice » Wed May 30, 2012 2:42 am

we can write the signal or strategy.
As for, indicator with alerts.
I have received instructions from my boss not to implement this.
However i can do this in a private arrangement, if you are up for it.
User avatar
Apprentice
FXCodeBase: Confirmed User
 
Posts: 36437
Joined: Thu Dec 31, 2009 11:59 am
Location: Zagreb, Croatia

Re: Percentage Crossover Channel indicator

Postby massarde » Wed May 30, 2012 2:51 am

not sure how this work but u can contact me through email.
paulomassarde@hotmail.com, and we can see how good "$$$$$$" i think this indicator is....lol..
massarde
 
Posts: 3
Joined: Fri Mar 30, 2012 3:20 pm

Re: Percentage Crossover Channel indicator

Postby massarde » Thu May 31, 2012 5:46 pm

Very, very happy with what he did for me. worth every penny.
very patient, went through each detail with me. changed some stuff to how I wanted.
100% happy with the result.

Many Thanks Apprentice, you are the best. :D
massarde
 
Posts: 3
Joined: Fri Mar 30, 2012 3:20 pm

Re: Percentage Crossover Channel indicator

Postby Alexander.Gettinger » Fri Jun 01, 2012 2:16 pm

massarde wrote:Would be possible some alert with email and sound if the candle touches or crosses the middle line?
I think this indicator is the best that i got so far. simple and efficient.
Thanks.

See update of strategy: viewtopic.php?f=31&t=10452&p=34749#p34749
Alexander.Gettinger
FXCodeBase: Confirmed User
 
Posts: 3785
Joined: Wed Mar 31, 2010 9:40 pm
Location: Russia, Omsk

Re: Percentage Crossover Channel indicator

Postby TakisGen » Sat Apr 06, 2013 9:50 am

Great concept, wrong calculations.
But not easy to see the error looking at the chart.
Unless you scale the data to feed your neural network and everything starts going bad.
You will rewrite the network, double check the transfer function and start having sigmoid dreams for a couple of months.
Finally, since everything else is ok, you realize that if your income is decreased by 10% and then the result is increased by 10% you dont earn the same money. Only politicians say so :)
Data is not centered around zero and overflow the upper limit.
So, use this approach and remember to check other indicators too:

if (period>first) then
local half=source[period]*percent/200
if source[period]-half>M[period-1] then
M[period]=source[period]-half
elseif source[period]+half<M[period-1] then
M[period]=source[period]+half
else
M[period]=M[period-1];
end
U[period]=M[period]+half
L[period]=M[period]-half
else ......

Best regards,
Takis
TakisGen
 
Posts: 34
Joined: Sat May 28, 2011 10:09 am



Return to Custom Indicators

Who is online

Users browsing this forum: No registered users and 43 guests