Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen
vivele123  
mthessdc:

Hi,

I will attach a screenshot.

You can use icustom function. Or have somebody do the ea.

 

Bullish Trend = When laser is blue
Bearish Trend = When laser is red
Buy Signal = When there is new Uptrend (First Blue laser)
Sell Signal = When there is new Downtrend (First Red Laser)


Trend laser is an indicator ideally combined to others and used as trend filter. 

The results are usually big winners and small losers. 


 ================

 So you will tell me which buffers of interest like:SetIndexBuffer(0,RSIbuf);

   SetIndexBuffer(1,buf1);

   SetIndexBuffer(2,buf2);

   SetIndexBuffer(3,buf3);   

... and the icustom call, and at which periodicity to call your indicator, chart# ?     

Karlo Wilson Vendiola  

buffers 0-3

 

buffer 0 is used to call up trend

buffer 1 for downtrend 

buffer 2 for buy signal

buffer 3 for sell signal

 

the timeframe if will work on is the chart the indicator with the icustom is attached

 

Here is a sample code to call for uptrend or downtrend

//+------------------------------------------------------------------+
//|                                             trend laser call.mq4 |
//|                        Copyright 2014, MetaQuotes Software Corp. |
//|                                              http://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2014, MetaQuotes Software Corp."
#property link      "http://www.mql5.com"
#property version   "1.00"
#property strict
#property indicator_chart_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int OnInit()
  {
//--- indicator buffers mapping
   
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
//---
   //Call for uptrend
   double uptrend = iCustom ( 
   
                              NULL, 0, "\\market\\pipfinite-trend-laser",
                              " ", 
                              7,
                              true,
                              " ",
                              1,
                              " ",
                              false,
                              false,
                              false,
                              0, //Index for Uptrend
                              1 //Shift
                              
                             ); 
  
            
   if (uptrend != 0)Comment("Pipfinite Trend Laser UPTREND");
   
   
   //Call for downtrend
   double downtrend = iCustom ( 
   
                              NULL, 0, "\\market\\pipfinite-trend-laser",
                              " ", 
                              7,
                              true,
                              " ",
                              1,
                              " ",
                              false,
                              false,
                              false,
                              1, //Index for Downtrend
                              1 //Shift
                              
                             ); 
  
            
   if (downtrend != 0)Comment("Pipfinite Trend Laser DOWNTREND");
      
      
      
//--- return value of prev_calculated for next call
   return(rates_total);
  }
//+------------------------------------------------------------------+
Valeri Simov  

Hello Sir,

It looks great indicator..  and i do think to purchase but still have a few question:

 1.I am a day trader.. as you mention before it can work on all time frames... so.. m15 m30 it want be a problem i resume? (it is just none of your charts have these timeframes)

2. Alerts. do you have some allerts for android? as i (like many of us) are working.. and not always we can be in front of computer... any ideas/suggestions on this issue?

3.what willv be a best settings for M15-M30 timeframes?

 

Thank you so much for your time

 

regards

 

Val 

Valeri Simov  

p.s. this indicator is for MQL 5 or it can be used on MQL4???

do you have a guid after purchasing your indicator? when and how to creat a settings.. as i not really good in it.. thanks 

jdroid  

Hi,

Very interesting looking indicator. I would like to see how it works under very choppy conditions.  Can you post a screenshot of the indicator on EURNZD H4, from Aug 1 until now?

Thanks 

Karlo Wilson Vendiola  
shual:

Hello Sir,

It looks great indicator..  and i do think to purchase but still have a few question:

 1.I am a day trader.. as you mention before it can work on all time frames... so.. m15 m30 it want be a problem i resume? (it is just none of your charts have these timeframes)

2. Alerts. do you have some allerts for android? as i (like many of us) are working.. and not always we can be in front of computer... any ideas/suggestions on this issue?

3.what willv be a best settings for M15-M30 timeframes?

 

Thank you so much for your time

 

regards

 

Val 

1. For day trading, m30 or m15 is good. H1 is also recommended . It works on all timeframes 

2. it has email pop up and push alerts

3. Default settings are good but will lag a bit to filter noise. You can decrease the period to 3-5 to have faster entries.

The range of recommended settings is 3-10. See what suites you best 

Karlo Wilson Vendiola  
jdroid:

Hi,

Very interesting looking indicator. I would like to see how it works under very choppy conditions.  Can you post a screenshot of the indicator on EURNZD H4, from Aug 1 until now?

Thanks 

ok sure,

here is it using default setting


[Gelöscht]  

i bought yesterday the inticator and i m using it on demo.

I open 10 couple of chart of major currencies, half in M30 and half in H10

i set period = 3 as saw on the thread.


till now only a few win and a lot of losses.

It seems that the notification arrive only when the "positive effects" are aldready gone, like "repainted" indicators.


Maybe some suggestion how to use better this indicator?


thank to everybody can suggest me the best for that


my skype ID is Raffaele.vianello1972

Karlo Wilson Vendiola  
raffus2:

i bought yesterday the inticator and i m using it on demo.

I open 10 couple of chart of major currencies, half in M30 and half in H10

i set period = 3 as saw on the thread.


till now only a few win and a lot of losses.

It seems that the notification arrive only when the "positive effects" are aldready gone, like "repainted" indicators.


Maybe some suggestion how to use better this indicator?


thank to everybody can suggest me the best for that


my skype ID is Raffaele.vianello1972

Hi, you use filter on bigger time frame trend to enter .

Example, look on the Daily chart for the trend. If Its blue on daily, only look to buy on H1 or M30 chart. You can exit on opposite signal and use average SL and TP indicated by the indicator. This was explained on the video

 

The alerts should be sent to your email or sms the same time the popup alerts are generated. Alerts are generated on the close of the bar so you wont miss the signal. Please check your email provider if there are problems with email alerts 

profit4me  

hi there

this indicator looks great, could you tell me if i can add it as a expert advisor and set it up to automatically trade based on signals.

great stuff mate ;) 

evanlouie  

Does this work just as well on short time periods (1m ,5m, 15m)?

Thanks. 

Karlo Wilson Vendiola  
profit4me:

hi there

this indicator looks great, could you tell me if i can add it as a expert advisor and set it up to automatically trade based on signals.

great stuff mate ;) 

yes, you can have a coder make an ea for this indicator
Karlo Wilson Vendiola  
evanlouie:

Does this work just as well on short time periods (1m ,5m, 15m)?

Thanks. 

it works on all timeframes. a good method is trading it on a lower timeframe based from the trend on a bigger timeframe.
Valeri Simov  
Hello.. can you tell me please does this indicator will work on 15M or 30M charts?? can this indicator will do scalping is well? or its just for long trades\|? thank you
Valeri Simov  
sorry... please disregard my previos question.... i have just noticed that someone has asked you already... but for a small timeframes we need to ajust setting for smaller profits? thank you
Karlo Wilson Vendiola  
shual:
sorry... please disregard my previos question.... i have just noticed that someone has asked you already... but for a small timeframes we need to ajust setting for smaller profits? thank you
Hi, no need to adjust. Using on  smaller timeframes will give smaller profits. When using on smaller timeframe, its good to trade the direction of the bigger timeframe.
Valeri Simov  

Hello again... i have finally purchased your indicator.. but need to ask you some question:

I am using time frame M15... and start to use period 5.

now.. when alert pop inn.. it is difference in around of 15 pips... in every chart.. i am using hotforex.. and spreads they have is great.. so.. can you please tell me what to do??? it is very big delay....

thank you so much 

Karlo Wilson Vendiola  
shual:

Hello again... i have finally purchased your indicator.. but need to ask you some question:

I am using time frame M15... and start to use period 5.

now.. when alert pop inn.. it is difference in around of 15 pips... in every chart.. i am using hotforex.. and spreads they have is great.. so.. can you please tell me what to do??? it is very big delay....

thank you so much 

Hi, the alert will happen on the close of the bar. So it its 15 minute timeframe, the alert will happen at the close of the M15bar. The alert will happen at the same time as the arrow appear so there is no delay
Karlo Wilson Vendiola  

I will be updating this to version "2" which included max bars to use.

This will be helpful in determining recent stoploss and takeprofit values.

Also new settings updates

 

Have fun :) 

Karlo Wilson Vendiola  
mthessdc:

I will be updating this to version "2" which included max bars to use.

This will be helpful in determining recent stoploss and takeprofit values.

Also new settings updates

 

Have fun :) 

Hi folks, version 2 is available and improved!

Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen