(Update MTF Panel 1.3) Ichimoku MTF Panel and Ichimoku Meter

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

Re: (Update MTF Panel 1.2) Ichimoku MTF Panel and Ichimoku Meter

Postby Gidien » Tue Apr 26, 2011 2:19 am

Hi,

we had "Easter" in Germany, time for my family. Searching eggs with my little daughter was more important to me.

I start to code the volume into to indicator. but i m not sure if increasing the tickvolume could says us if the singal good or not. So i read something about VSA Volume Spread Analyse and i take the following rule to filter out signals, not only increasing the volume.

Code: Select all
        local Range1 = source.high[p-1] - source.low[p-1];
        local Range2 = source.high[p-2] - source.low[p-2];
        local Vol1   = source.volume[p-1];
        local Vol2   = source.volume[p-2];
        if Range1 > Range2 then
            if (Vol1 > Vol2) then
                if source.high[p - 1] - source.close[p - 1] < source.close[p - 1] - source.low[p - 1] then
                    dir ="LONG";
                elseif source.high[p - 1] - source.close[p - 1] > source.close[p - 1] - source.low[p - 1] then
                    dir ="SHORT";   
                end
               
            end
        end


i also take attention to the spread(H-L) and the tickvolume.

If the Spread is increasing and the volume too, then we take a look to the positon of the closevalue regarding the high and low of the candle.

If the close is closer to the high of the candle increasing spread and volume indicates more buying pressure.
If the close is closer to the low, then we have more selling pressure.


Please check the Ichimoku Meter with Volume if it is better.

ICHMeter_V1_5_Volume.lua
(36.59 KiB) Downloaded 2050 times
Gidien
FXCodeBase: Confirmed User
 
Posts: 106
Joined: Mon Feb 08, 2010 7:39 am
Location: Hamburg

Re: (Update MTF Panel 1.2) Ichimoku MTF Panel and Ichimoku Meter

Postby kumaresan » Tue Apr 26, 2011 2:44 pm

Hi Gidien,

Sorry for troubled you, and belated wishes for Easter. God has risen for to save us :P

I'm happy for your effort on this. I too accept this spread concept.

But when observe the 1_5 version, the signal frequency became very less, and i'm not compromised that, the few signal coming are very strong signals.

And i don't want to confuse you from the right path. I have shared the possibility that can make the signal better, but even my view may be wrong.

Awaiting for updated version.

Regds / Kumaresan. :)
kumaresan
 
Posts: 7
Joined: Tue Apr 19, 2011 1:32 am

Re: (Update MTF Panel 1.3) Ichimoku MTF Panel and Ichimoku Meter

Postby Gidien » Wed Apr 27, 2011 3:21 am

Add Ichimoku MTF Panel Version 1.3 see post 1
Gidien
FXCodeBase: Confirmed User
 
Posts: 106
Joined: Mon Feb 08, 2010 7:39 am
Location: Hamburg

Re: (Update MTF Panel 1.3) Ichimoku MTF Panel and Ichimoku Meter

Postby ak_nomiss » Mon May 02, 2011 8:05 pm

can you make a strategy base on this indicator ? give out alert/signal when 2 lines cross and how many lots to trade ? Thank you
ak_nomiss
 
Posts: 18
Joined: Mon Nov 08, 2010 7:50 pm

Re: (Update MTF Panel 1.3) Ichimoku MTF Panel and Ichimoku Meter

Postby t1982t » Wed Jul 20, 2011 11:22 am

Hello
I like ichimoku strategies: http://www.kumotrader.com/ichimoku_wiki ... strategies
And ICHMETER.lua, thank you for it.
Seems Ichimoku strategies permit a good management account wiht stop lost less than the take profit.
I wondering if it is possible pragram a strategy with ICHMETER.lua. It could be simple, buy in 90%-100% bullish, sell in 90%-100% bearish of the indicator. Or not so simple: the five strategies on the page above, with trailing stop base on ichimoku signals, with the movement of kijun for example.
Thank you
Kind regards
t1982t
 
Posts: 44
Joined: Sat Jun 25, 2011 10:36 am


Re: (Update MTF Panel 1.3) Ichimoku MTF Panel and Ichimoku Meter

Postby RJH501 » Mon Jul 23, 2012 8:43 am

Would you please add Span Cross signals to this indicator.

Thank you,

RJH
RJH501
 
Posts: 84
Joined: Mon May 30, 2011 8:38 pm

Re: (Update MTF Panel 1.3) Ichimoku MTF Panel and Ichimoku Meter

Postby Mickaelfx » Wed Jul 25, 2012 7:39 am

Hi,

Would it be possible to add the possibility of an alert when the H1 Chikou span cross the kumo and only if the daily chikou span is above the kumo.

It would be great if we could change H1 by 15mns and daily by H1or whatever we want...

Hope I don't ask too much.Thanks in advance Mikl
Mickaelfx
 
Posts: 1
Joined: Wed Jul 25, 2012 7:29 am

Re: (Update MTF Panel 1.2) Ichimoku MTF Panel and Ichimoku Meter

Postby arindam89 » Thu Oct 04, 2012 7:50 pm

Gidien wrote:Hi,

we had "Easter" in Germany, time for my family. Searching eggs with my little daughter was more important to me.

I start to code the volume into to indicator. but i m not sure if increasing the tickvolume could says us if the singal good or not. So i read something about VSA Volume Spread Analyse and i take the following rule to filter out signals, not only increasing the volume.

Code: Select all
        local Range1 = source.high[p-1] - source.low[p-1];
        local Range2 = source.high[p-2] - source.low[p-2];
        local Vol1   = source.volume[p-1];
        local Vol2   = source.volume[p-2];
        if Range1 > Range2 then
            if (Vol1 > Vol2) then
                if source.high[p - 1] - source.close[p - 1] < source.close[p - 1] - source.low[p - 1] then
                    dir ="LONG";
                elseif source.high[p - 1] - source.close[p - 1] > source.close[p - 1] - source.low[p - 1] then
                    dir ="SHORT";   
                end
               
            end
        end


i also take attention to the spread(H-L) and the tickvolume.

If the Spread is increasing and the volume too, then we take a look to the positon of the closevalue regarding the high and low of the candle.

If the close is closer to the high of the candle increasing spread and volume indicates more buying pressure.
If the close is closer to the low, then we have more selling pressure.


Please check the Ichimoku Meter with Volume if it is better.

ICHMeter_V1_5_Volume.lua

hi gidian
see if this volume indicator can be of some help viewtopic.php?f=17&t=23459&p=40381&hilit=buy+sell#p40381
thanks buy
arindam89
 
Posts: 53
Joined: Mon Dec 12, 2011 5:39 am

Re: (Update MTF Panel 1.3) Ichimoku MTF Panel and Ichimoku M

Postby MathQuant » Fri Feb 01, 2013 11:08 pm

Thank you for ICHMeter_V1_5_Volume.lua
Impressive !
MathQuant
 
Posts: 5
Joined: Sun Jan 27, 2013 7:36 am

PreviousNext

Return to Custom Indicators

Who is online

Users browsing this forum: Baidu [Spider], Bing [Bot], Google [Bot] and 62 guests