Forex



Go Back   Forex Trading > Discussion Areas > Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 03-19-2009, 09:55 AM
Junior Member
 
Join Date: Mar 2009
Posts: 6
luca1982 is on a distinguished road
Intraday Intensity (indicator of David Bostian)

Hi everyone,
i am not able to programme metatrader. Can you write this indicator for metatrader? It is very useful if you use it with Bollinger Bands..very very interesting. Maybe the best indicator for volume, my opinion!!!!!!!!))))

The formula is: IIstd = Sum21 ((2C-H-L)/(H-L))xV
C=close
H=high
L=low
V=volume

It would be better to havealso the normalized version of this indicator, to have cleaner signals
IInorm = (IIstd / Sum21 V) x 100
V=volume

If you want to see the charts of these indicators, go to this link, unfortunatly it is italian, but you'll see how it is interesting, above all the normalized version of this indicator.
Thanks for help
Good trading for everyone
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #2 (permalink)  
Old 03-19-2009, 09:56 AM
Junior Member
 
Join Date: Mar 2009
Posts: 6
luca1982 is on a distinguished road
Trading Professionale - Intraday Intensity

This is the link, ya forgot it
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #3 (permalink)  
Old 03-19-2009, 08:57 PM
Junior Member
 
Join Date: Mar 2009
Posts: 6
luca1982 is on a distinguished road
//+------------------------------------------------------------------+
//| Accumulation.mq4 |
//| Copyright © 2005, MetaQuotes Software Corp. |
//| Forex Trading Software: Forex Trading Platform MetaTrader 4 |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2005, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net/"

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 LightSeaGreen
//---- buffers
double ExtMapBuffer1[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
IndicatorShortName("IIstd");
//---- indicators
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,ExtMapBuffer1);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Intraday Intensity |
//+------------------------------------------------------------------+
int start()
{
int i,counted_bars=IndicatorCounted();
//----
i=Bars-counted_bars-1;
while(i>=0)
{


double high =iHigh(0,PERIOD_D1,i);
double low =iLow(0,PERIOD_D1,i);
double open =iOpen(0,PERIOD_D1,i);
double close=iClose(0,PERIOD_D1,i);
ExtMapBuffer1[i]=(2*close-high-low);
if(ExtMapBuffer1[i]!=0)
{
double diff=high-low;
if(0==diff)
ExtMapBuffer1[i]=0;
else
{
ExtMapBuffer1[i]/=diff;
ExtMapBuffer1[i]*=Volume[i];
}
}
if(i<Bars-1) ExtMapBuffer1[i]+=ExtMapBuffer1[i+1];
i--;
}
//----
return(0);
}
//+------------------------------------------------------------------+




This is the code that i got from A/d indicator of metatrader. But how do i have to do to say that i want the calculation of 21 period? Help me please, for a programmer is a joke.. I'm waiting also the normalized indicator, it
is a killer if you associate it with Bollinger Bands. If someone is interested, i'll explain how to use and to develop a good trading system! Please, help, the codes for metatrader!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #4 (permalink)  
Old 06-22-2009, 10:39 PM
Junior Member
 
Join Date: Mar 2009
Posts: 2
jesperp is on a distinguished road
VERY interested

Hey luca1982

I am VERY interested in using a good system.

I look forward to hear from you

Cheers

Jesperp,
Denmark
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #5 (permalink)  
Old 07-08-2009, 10:43 PM
Junior Member
 
Join Date: Mar 2009
Posts: 6
luca1982 is on a distinguished road
here the code....a friend of mine helped me:


Intraday Normalized

//+------------------------------------------------------------------+
//| Accumulation.mq4 |
//| Copyright © 2005, MetaQuotes Software Corp. |
//| Forex Trading Software: Forex Trading Platform MetaTrader 4 |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2005, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net/"

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 LightSeaGreen
//---- buffers
double ExtMapBuffer1[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
IndicatorShortName("Intraday Normalizzato");
//---- indicators
SetIndexStyle(0,DRAW_HISTOGRAM);
SetIndexBuffer(0,ExtMapBuffer1);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Intraday Intensity |
//+------------------------------------------------------------------+
int start()
{
int i,counted_bars=IndicatorCounted();
//----
i=Bars-counted_bars-1;
while(i>=0)
{


double high =High[i];
double low =Low[i];
double open =Open[i];
double close=Close[i];

double std=0;
double SommaVolumi=0;

for (int k=i;k<=i+20;k++)
{

high =High[k];
low =Low[k];
open =Open[k];
close=Close[k];
double calcolo=0;
if((high-low)!=0)
calcolo=((2*close-high-low)/(high-low))*Volume[k];

SommaVolumi=SommaVolumi+Volume[k];
std=std+calcolo;
}



ExtMapBuffer1[i]=(std/SommaVolumi)*100;


i--;
}
//----
return(0);
}
//+------------------------------------------------------------------+







Intraday standard

//+------------------------------------------------------------------+
//| Accumulation.mq4 |
//| Copyright © 2005, MetaQuotes Software Corp. |
//| Forex Trading Software: Forex Trading Platform MetaTrader 4 |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2005, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net/"

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 Black
//---- buffers
double ExtMapBuffer1[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
IndicatorShortName("Intraday Standard");
//---- indicators
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,ExtMapBuffer1);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Intraday Intensity |
//+------------------------------------------------------------------+
int start()
{
int i,counted_bars=IndicatorCounted();
//----
i=Bars-counted_bars-1;
while(i>=0)
{


double high =High[i];
double low =Low[i];
double open =Open[i];
double close=Close[i];

double std=0;
double SommaVolumi=0;

for (int k=i;k<=i+20;k++)
{

high =High[k];
low =Low[k];
open =Open[k];
close=Close[k];
double calcolo=0;
if((high-low)!=0)
calcolo=((2*close-high-low)/(high-low))*Volume[k];

SommaVolumi=SommaVolumi+Volume[k];
std=std+calcolo;
}



ExtMapBuffer1[i]=std;


i--;
}
//----
return(0);
}
//+----------------------------+
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #6 (permalink)  
Old 07-08-2009, 10:48 PM
Junior Member
 
Join Date: Mar 2009
Posts: 6
luca1982 is on a distinguished road
Hey Jesperp....
if you like the trading system of Bollinger...these indicators (Intraday Intensity) are very helpful...Intraday Standard works like A/D...and the normalized version is helpful for reversal...my english is poor...polucshe moi russki))))
look at Bollinger's Theory...
Bye!!!!!!!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #7 (permalink)  
Old 10-30-2009, 11:08 AM
Junior Member
 
Join Date: Apr 2007
Posts: 14
Biker883 is on a distinguished road
Please explain

If someone is interested, i'll explain how to use and to develop a good trading system! Please, help, the codes for metatrader![/quote]

Hi Lucas,

Would it be possible for you to develop how you use the Intraday Intensity with the Bollenger bands.

Thank you

Gerry
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #8 (permalink)  
Old 10-30-2009, 01:24 PM
Senior Member
 
Join Date: Mar 2006
Posts: 310
vladv is on a distinguished road
Please anyone post some screenshots with this system?!Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #9 (permalink)  
Old 10-30-2009, 01:48 PM
Senior Member
 
Join Date: Mar 2006
Posts: 310
vladv is on a distinguished road
And those two indicators as mq4 code,please.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Intraday Trading HighFireTrend Commercial Trading Systems and indicators 3148 11-12-2009 11:37 AM
FreedomRocks IntraDay Method Pipskateer Suggestions for Trading Systems 77 02-26-2008 08:52 PM
Boostrade intraday EAs boostrade Expert Advisors - Metatrader 4 2 04-06-2007 11:50 PM
trend intensity index (tii) berale Indicators - Metatrader 4 2 10-04-2006 08:02 AM


All times are GMT. The time now is 02:50 PM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.