Go Back   Forex-TSD > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent 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
  #11 (permalink)  
Old 03-11-2006, 08:24 PM
linuxtroll's Avatar
Member
 
Join Date: Nov 2005
Posts: 61
linuxtroll is on a distinguished road
Quote:
Originally Posted by kamyar
personally it is not inportant for me thay what it exactly is.but in a look it seems good.two indicator(like zigzag)cross each othet on top or somewhere else which gives good entry point.as i see.
would u share it
thanks
I assume, it is 2RSI (RSI 9 and 3) crossing MACD... Turbo RSI and RSI; Sometihing like Woodies CCI (CCI 14 and 6)... LoL

Cheers,
__________________
"It's not the strongest species that survive, nor the most intelligent, but the one most responsive to change" -- Darwin.

Last edited by linuxtroll; 03-11-2006 at 08:26 PM.
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
  #12 (permalink)  
Old 03-11-2006, 08:36 PM
Junior Member
 
Join Date: Feb 2006
Posts: 25
-Cwave is on a distinguished road
Quote:
Originally Posted by linuxtroll
I assume, it is 2RSI (RSI 9 and 3) crossing MACD... Turbo RSI and RSI; Sometihing like Woodies CCI (CCI 14 and 6)... LoL

Cheers,
LOL. i knew RSI had to something with it




also assuming here

Last edited by -Cwave; 03-11-2006 at 08:46 PM.
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
  #13 (permalink)  
Old 03-12-2006, 02:09 AM
Foreverold's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 274
Foreverold is on a distinguished road
It actually part of a system I had in metastock, I also had it for tradestation but never installed it

It is part of the kwikpop system, once again the indicators are for tradestation (see photo) but if you think you can use them here they are.

KPSwing2:

Input: PltWidth(1),LnColor(14);
Vars: D1H(0), T1H(0), H1H(0), D1L(0), T1L(0), L1L(0), XUp(0), XDn(0), PH(0), PL(0), XFlag(0);

If KPCROSSDEMA>KPTRDEMA and KPCROSSDEMA>KP0104 then XFlag=1;
If KPCROSSDEMA<KPTRDEMA and KPCROSSDEMA<KP0104 then XFlag=-1;

If XFlag[1]>=0 and XFlag=-1 then Begin
XDn=0;
PH=HighestBar(H,XUp+1);
D1H=Date[PH];
T1H=Time[PH];
H1H=High[PH];
Value10 = TL_New(D1L,T1L,L1L,Date[PH],Time[PH],H[PH]);
TL_SetSize(Value10,PltWidth);
TL_SetExtRight(Value10,False);
TL_SetExtLeft(Value10,False);
TL_SetColor(Value10,LnColor);
End;

If XFlag[1]<=0 and XFlag=1 then Begin
XUp=0;
PL=LowestBar(L,XDn+1);
D1L=Date[PL];
T1L=Time[PL];
L1L=Low[PL];
Value20 = TL_New(D1H,T1H,H1H,Date[PL],Time[PL],L[PL]);
TL_SetSize(Value20,PltWidth);
TL_SetExtRight(Value20,False);
TL_SetExtLeft(Value20,False);
TL_SetColor(Value20,LnColor);
End;

XUp=XUp+1;
XDn=XDn+1;
-----------------------------------------------------------------------

KPSwing3-1:

Input: PltWidth(1),LnColor(14);
Vars: D1H(0), T1H(0), H1H(0), D1L(0), T1L(0), L1L(0), XUp(0), XDn(0), PH(0), PL(0), XFlag(0),
UpLine(0), DnLine(0);

UpLine=WAverage(KPTR4,6)*1.0025;
DnLine=WAverage(KPTR4,6)*.9975;

If KP0102>UpLine and C>KPTR4 then XFlag=1;
If KP0102<DnLine and C<KPTR4 then XFlag=-1;

If XFlag[1]>=0 and XFlag=-1 then Begin
XDn=0;
PH=HighestBar(H,XUp+1);
D1H=Date[PH];
T1H=Time[PH];
H1H=High[PH];
Value10 = TL_New(D1L,T1L,L1L,Date[PH],Time[PH],H[PH]);
TL_SetSize(Value10,PltWidth);
TL_SetExtRight(Value10,False);
TL_SetExtLeft(Value10,False);
TL_SetColor(Value10,LnColor);
End;

If XFlag[1]<=0 and XFlag=1 then Begin
XUp=0;
PL=LowestBar(L,XDn+1);
D1L=Date[PL];
T1L=Time[PL];
L1L=Low[PL];
Value20 = TL_New(D1H,T1H,H1H,Date[PL],Time[PL],L[PL]);
TL_SetSize(Value20,PltWidth);
TL_SetExtRight(Value20,False);
TL_SetExtLeft(Value20,False);
TL_SetColor(Value20,LnColor);
End;

XUp=XUp+1;
XDn=XDn+1;
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
  #14 (permalink)  
Old 03-12-2006, 09:13 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,824
Blog Entries: 313
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by linuxtroll
I assume, it is 2RSI (RSI 9 and 3) crossing MACD... Turbo RSI and RSI; Sometihing like Woodies CCI (CCI 14 and 6)... LoL

Cheers,
Yes you are right. It's Turbo RSI + some other RSIs plus some pattern.

Hunter_GB posted his system to the "Manual Trading Systems" section on this forum many months ago. It was free trading system. He is using this system during the 3 years already. I did not check the changes on his website but I think that his system is still free. I do not think that he is selling something.

This guy is having one problem: he does not speak english at all. Russian language only.
It is very difficult to understand him sometimes even for me (with the same language).

He is too emotional and patriot of his country: some his expressions in the posts can not be translated by http://babelfish.altavista.com/

I will delete all the posts with Russian language.
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
  #15 (permalink)  
Old 03-12-2006, 09:19 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,824
Blog Entries: 313
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by Hunter_GB
Do not look at the price. Look at the kind of price - pattern. And trade only when the "Gold Cross" is created. It is the main pattern which I am using for the all my trading systems.
And Hunter_GB, please I know that no Russian can trade forex without political talking about which country ... and so on.

For all these talking we have Non Related Discussions.
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
  #16 (permalink)  
Old 03-12-2006, 10:51 AM
Meriakre's Avatar
Member
 
Join Date: Jan 2006
Posts: 48
Meriakre is on a distinguished road
I know russian. U can use me as a translator ! Also I can trade forex without talking about politics!
Cheers!
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
  #17 (permalink)  
Old 03-13-2006, 04:25 AM
linuxtroll's Avatar
Member
 
Join Date: Nov 2005
Posts: 61
linuxtroll is on a distinguished road
Quote:
Originally Posted by Meriakre
I know russian. U can use me as a translator ! Also I can trade forex without talking about politics!
Cheers!
Wonderful Meriakre... Translate this to us in few lines:
http://gold-cross.spb.ru/papers/goldcross.htm

He may be the next Woodie... Woodie with CCI and Hunter with RSI...

Cheers,
__________________
"It's not the strongest species that survive, nor the most intelligent, but the one most responsive to change" -- Darwin.

Last edited by linuxtroll; 03-13-2006 at 05:11 AM.
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
  #18 (permalink)  
Old 03-17-2006, 10:56 PM
Mich-Me's Avatar
Junior Member
 
Join Date: Mar 2006
Posts: 4
Mich-Me is on a distinguished road
A Little Joke

This is a Little Joke from Hunter_GB. The name of new born system is Butterfly. Any question? Thanks for GRoM.
http://www.arkworldmarket.ru/forum/s...ead.php?t=1728
Attached Images
File Type: jpg New Indicator.jpg (874.3 KB, 664 views)
File Type: jpg Butterfly_4.jpg (691.7 KB, 347 views)
File Type: jpg Butterfly_4 -1.jpg (754.8 KB, 327 views)
File Type: jpg Butterfly_4 -2.jpg (714.3 KB, 269 views)
File Type: jpg ButterflyMain.jpg (803.3 KB, 247 views)

Last edited by Mich-Me; 03-22-2006 at 01:55 AM.
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
  #19 (permalink)  
Old 04-02-2006, 12:13 AM
Member
 
Join Date: Dec 2005
Posts: 58
techinvest is on a distinguished road
Quote:
Originally Posted by Mich-Me
This is a Little Joke from Hunter_GB. The name of new born system is Butterfly. Any question? Thanks for GRoM.
http://www.arkworldmarket.ru/forum/s...ead.php?t=1728
Is this butterfly indicator real? If so where is it available either for free or for purchase?
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
  #20 (permalink)  
Old 04-30-2006, 07:24 PM
Mich-Me's Avatar
Junior Member
 
Join Date: Mar 2006
Posts: 4
Mich-Me is on a distinguished road
Butterfly

The Butterfly indicator as trade system soon be available for rent. Conditions are on http://gold-cross.spb.ru/

This is the replay from Larry Williams.
От кого: "Larry Williams" <xxxxxxx@xxxxxxxxxxxx.net>(private address of L. Williams was removed by me)
Кому: "Hunter_GB" <hunter_gb@mail.ru>
Дата: 29 Апр 2006 00:30:14
Тема: Re: Butterfly, based on Larry Williams %R

i cant read russian yet! LOOKS NICE THOUGH CONGRATULATIONS

Larry
----- Original Message -----
From: "Hunter_GB" <hunter_gb@mail.ru>
To: <larry@ireallytrade.com>
Sent: Friday, April 28, 2006 1:06 PM
Subject: Butterfly, based on Larry Williams %R


> Dear Sir,
> I thank you for very valuable indicator %R on the basis of which the
> Butterfly was possible to create - the indicator and trading system. The
> indicator and system was tested on Forex, Futures, CFD, MICEX. If you have any interest, http://www.arkworldmarket.ru/forum/s...ead.php?t=1728
> Yours,
> Michael Trofimov.
>
> Trading for Traders.
> Training & Signals.
> http://gold-cross.spb.ru/
> ICQ Number: 271424299
> Skype: gold-cross

Last edited by Mich-Me; 04-30-2006 at 07:48 PM.
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


All times are GMT. The time now is 10:42 PM.



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