If you don't risk, you don't ever have to lose.
GBP/AUD, GBP/CAD, GBP/CHF and GBP/NZD thread 126 replies
TrendMagic Channel 2 replies
Another great Breakout GBP/JPY System (Dachel's Simple system) 62 replies
If you buy gbp/usd and sell eur/usd, is that the same as being short eur/gbp? 1 reply
DislikedAh, but we didn't establish if there is something wrong with you yet!Ignored
DislikedOk Im knocking the table with my hammer and shouting order order
To Clarify
I will never leave Forex Factory..
Why...because I have received as much help and in sight as what I have hopefully given out.
For every action there is a reaction I try to keep things balanced I like good karma coming back into my life if I give it out I hope it will come back my way
Forget any more indicators ,research in pvt if you wish and come back into the thread when you have some statistics ..do not post 'lets try' scenarios.
Help from seasoned...Ignored
Dislikedhi Bug
Just went down to the south coast ......had a nice relaxing time no phones or PC so a break from every thing..
Will inc the GU ind
running out of time today it seems so much to do at home !
just a quick screen shot of HA ind which is combination of both bb macd and TM as you can see when both confirm as normal HA also confirms..
PaulusIgnored
#property copyright "Copyright © 2007, Heaven"
#property link "[url]http://Beginner.com[/url]"
//----
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Lime
#property indicator_color2 Red
#define SH_BUY 1
#define SH_SELL -1
//---- Входные параметры
extern double dist=0.5;
extern bool SoundON=false;//true;
extern int AllBars=0;//Для скольки баров считать. 0 - для всех.
extern int Otstup=30;//Отступ.
extern double Per=9;//Период.
//----
int SH,NB,i,UD;
double R,SHMax,SHMin;
double BufD[];
double BufU[];
int flagval1=0;
int flagval2=0;
//+------------------------------------------------------------------+
//| Функция инициализации |
//+------------------------------------------------------------------+
int init()
{
//В NB записываем количество баров для которых считаем индикатор
if (Bars<AllBars+Per || AllBars==0) NB=Bars-Per; else NB=AllBars;
IndicatorBuffers(2);
IndicatorShortName("SHI_SilverTrendSig");
SetIndexStyle(0,DRAW_ARROW,0,1);
SetIndexStyle(1,DRAW_ARROW,0,1);
SetIndexArrow(0,159);
SetIndexArrow(1,159);
SetIndexBuffer(0,BufU);
SetIndexBuffer(1,BufD);
SetIndexDrawBegin(0,Bars-NB);//Индикатор будетотображаться только для NB баров
SetIndexDrawBegin(1,Bars-NB);
ArrayInitialize(BufD,0.0);//Забьём оба буфера ноликами. Иначе будет мусор при смене таймфрейма.
ArrayInitialize(BufU,0.0);
return(0);
}
//+------------------------------------------------------------------+
//| Функция деинициализации |
//+------------------------------------------------------------------+
int deinit()
{
return(0);
}
//+------------------------------------------------------------------+
//| Собсна индикатор |
//+------------------------------------------------------------------+
int start()
{
int CB=IndicatorCounted();
/* Тут вот та самая оптимизационная фишка. В язык введена функция, которая возвращает количество
посчитанных баров, причём очень хитро. При первом вызове индикатора это 0, всё понятно, ещё ничего
не считалось, а затем выдаёт количество обсчитанных баров минус один. Т.е. если всего баров 100,
то функция вернёт 99. Я ввёл такой код, выше у меня определялась NB - кол-во баров подлежащих
обсчёту. В принципе этот параметр можно и выкинуть, однако для тех кто в танке (I80286) можно
и оставить. Так вот, здесь, при первом вызове NB остаётся прежней, а при последующих уменьшается
до последнего бара, т.е. 1 или 2, ну или сколько там осталось посчитать*/
if(CB<0) return(-1); else if(NB>Bars-CB) NB=Bars-CB;
for(SH=1;SH<NB;SH++)//Прочёсываем график от 1 до NB
{
for(R=0,i=SH;i<SH+10;i++) {R+=(10+SH-i)*(High[i]-Low[i]);} R/=55;
//----
SHMax=High[Highest(NULL,0,MODE_HIGH,Per,SH)];
SHMin=Low[Lowest(NULL,0,MODE_LOW,Per,SH)];
if (Close[SH]<SHMin+(SHMax-SHMin)*Otstup/100 && UD!=SH_SELL)
{
// Pop an Alert
if (SH==1 && flagval1==0)
{
flagval1=1;
flagval2=0;
if (SoundON) Alert("BUY signal at Ask=",Ask,"n Bid=",Bid,"n Time=",TimeToStr(CurTime(),TIME_DATE)," ",TimeHour(CurTime()),":",TimeMinute(CurTime()),"n Symbol=",Symbol()," Period=",Period());
}
BufU[SH]=Low[SH]-R*dist; UD=SH_SELL;//0.5
}
if (Close[SH]>SHMax-(SHMax-SHMin)*Otstup/100 && UD!=SH_BUY)
{
// pop an Alert
if (SH==1 && flagval2==0)
{
flagval2=1;
flagval1=0;
if (SoundON) Alert("SELL signal at Ask=",Ask,"n Bid=",Bid,"n Date=",TimeToStr(CurTime(),TIME_DATE)," ",TimeHour(CurTime()),":",TimeMinute(CurTime()),"n Symbol=",Symbol()," Period=",Period());
}
BufD[SH]=High[SH]+R*dist; UD=SH_BUY;//dist was 0.4
}
}
return(0);
}
//+--------------------------------------------------- DislikedBelow is the 1st post on this thread if you get time please read through it
This system can used on any time frame I personaly also use it on a daily time frame.. I will try and post some examples of longer time frame trades please use on EURUSD also ... this was added 27th July 1020 [list][*]My latest setup is here with what you need and this is up to date currently 12th June[*]The BB MACD and the TM indicator below were combined into one indicator by TudorGirl[*][b]She then developed it into a multy time frame...Ignored
DislikedThank you for the indicators. I posted a screenshot yesterday and it had your HG, TudorGirl's HG and a BBMACD with your 144,233 settings....
Ignored
DislikedWill start a new thread sounds a good idea I will copy and paste the front page leaving out the repainting indicators and have the current set up.
This will be macd BB TM and the HG_0001a indicator which is just the bbmacd and the tm combined and works very well.This means if you wish to have just one indicator the HG and use it to trade.
PaulusIgnored
DislikedOK - for all ANTI-DEMO Masters:
At live acc.:
Today Sell 1.2714 SL 1.2955 TP Opened (1.2182).
Daily.
Bye next month.Ignored
DislikedDOES THE FOREX FREEDOM BARS IN THE FIRST PAGE REPAINT OR NOT? No one has answered the question yet.Ignored
DislikedIs is possible to take the BB_MACD_CCT_alerts_v2 indicator and turn it into an EA for any currency pair and in any time period? Where Buy and Sell is executed on the close of the candlestick?...Ignored