Traderji.com - Discussion forum for Stocks Commodities & Forex

candlesticks

Discuss candlesticks at the Technical Analysis within the Traderji.com - Discussion forum for Stocks Commodities & Forex; ** Every Candles Are Talking With You.....if You Can Listen.....** ** Every Candles Are Asking ...


Go Back   Traderji.com - Discussion forum for Stocks Commodities & Forex > METHODS & STRATEGIES > Technical Analysis

Notices

Technical Analysis Discussion of all the principles involved in technical analysis.


Advertise Here

Reply
 
Thread Tools
Sponsored Links
  #1  
Old 7th February 2006, 01:41 AM
Member
 
Join Date: Feb 2006
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
candle4all is on a distinguished road
Reputation: 20
Default candlesticks

** Every Candles Are Talking With You.....if You Can Listen.....**
** Every Candles Are Asking Somthing Specials To You......if You Can Understand...**

Hi Friends,

I Am From Gujrat....

I Am Searching With Candlesticks-chart...

I Want To Share & Get Many Openion With All Of You.....

Yours Friendly.
Reply With Quote
  #2  
Old 7th February 2006, 06:59 AM
Super Moderator
 
Join Date: Jun 2004
Posts: 1,764
Thanks: 0
Thanked 44 Times in 11 Posts
Traderji has disabled reputation
Reputation: 93
Default Re: candlesticks

Welcome to the forum, candle4all.

Please feel free to share your opinion using the candlestick theory!

Looking forward to your contributions.
__________________
Best Wishes!

Traderji

www.Traderji.com
Reply With Quote
  #3  
Old 31st August 2008, 01:58 PM
Member
 
Join Date: Sep 2004
Posts: 1,143
Thanks: 191
Thanked 189 Times in 100 Posts
rkkarnani has a spectacular aura aboutrkkarnani has a spectacular aura aboutrkkarnani has a spectacular aura about
Reputation: 246
Default Re: candlesticks

Very Basics about Candlesticks!!! No advanced stuff at all!!!

http://www.megaupload.com/?d=UE7KRUAP
Reply With Quote
  #4  
Old 31st August 2008, 02:02 PM
Member
 
Join Date: Apr 2007
Posts: 679
Thanks: 70
Thanked 73 Times in 32 Posts
chintan786 will become famous soon enoughchintan786 will become famous soon enough
Reputation: 102
Default Re: candlesticks

Quote:
Originally Posted by candle4all View Post
** Every Candles Are Talking With You.....if You Can Listen.....**
** Every Candles Are Asking Somthing Specials To You......if You Can Understand...**

Hi Friends,

I Am From Gujrat....

I Am Searching With Candlesticks-chart...

I Want To Share & Get Many Openion With All Of You.....

Yours Friendly.
welcome to traderji...... may i know from where in Gujarat.?
Reply With Quote
  #5  
Old 31st August 2008, 02:08 PM
Member
 
Join Date: Sep 2004
Posts: 1,143
Thanks: 191
Thanked 189 Times in 100 Posts
rkkarnani has a spectacular aura aboutrkkarnani has a spectacular aura aboutrkkarnani has a spectacular aura about
Reputation: 246
Default Re: candlesticks

Quote:
Originally Posted by chintan786 View Post
welcome to traderji...... may i know from where in Gujarat.?
Oh!!! The thread was started way back in 2006!!!
I just came across this , while searching for a relevant thread on Candlestick and posted my link!!!
The person who started it did not seem to have continued!!!
Reply With Quote
  #6  
Old 31st August 2008, 02:10 PM
Member
 
Join Date: Nov 2007
Location: Coimbatore
Posts: 128
Thanks: 24
Thanked 47 Times in 18 Posts
leo_3455 will become famous soon enough
Reputation: 76
Default Re: candlesticks

The following is the AFL - Candle pattern identifier I got from the net. Once you get the name of the pattern, you can get at the description/explanation from sites like http://stockcharts.com/school/doku.p...uction_to_cand


//Candle Pattern identifier

Plot(C,"",1,64);
O1 = Ref(O,-1);O2 = Ref(O,-2);
H1 = Ref(H,-1);H2 = Ref(H,-2);
L1 = Ref(L,-1);L2 = Ref(L,-2);
C1 = Ref(C,-1);C2 = Ref(C,-2);
function CandlePattern(P)
{
global PatternName;
if(P == 0) { PatternName = "NearDoji"; Pv = (abs(O-C)<= ((H-L)*0.1)); }
else if(P == 1) { PatternName = "BlackCandle"; Pv = (O>C); }
else if(P == 2) { PatternName = "LongBlackCandle"; Pv = (O>C AND
(O-C)/(.001+H-L)>.6); }
else if(P == 3) { PatternName = "SmallBlackCandle"; Pv = ((O>C) AND
((H-L)>(3*(O-C)))); }
else if(P == 4) { PatternName = "WhiteCandle"; Pv = (C>O); }
else if(P == 5) { PatternName = "LongWhiteCandle"; Pv = ((C>O) AND
((C-O)/(.001+H-L)>.6)); }
else if(P == 6) { PatternName = "SmallWhiteCandle"; Pv = ((C>O) AND
((H-L)>(3*(C-O)))); }
else if(P == 7) { PatternName = "BlackMaubozu"; Pv = (O>C AND H==O AND
C==L); }
else if(P == 8) { PatternName = "WhiteMaubozu"; Pv = (C>O AND H==C AND
O==L); }
else if(P == 9) { PatternName = "BlackClosingMarubozu"; Pv = (O>C AND
C==L); }
else if(P == 10) { PatternName = "WhiteClosingMarubozu"; Pv = (C>O AND
C==H); }
else if(P == 11) { PatternName = "BlackOpeningMarubozu"; Pv = (O>C AND
O==H); }
else if(P == 12) { PatternName = "WhiteOpeningMarubozu"; Pv = (C>O AND
O==L); }
else if(P == 13) { PatternName = "HangingMan"; Pv = (((H-L)>4*(O-C)) AND
((C-L)/(.001+H-L)>= 0.75) AND ((O-L)/(.001+H-L)>= 0.75)); }
else if(P == 14) { PatternName = "Hammer"; Pv = (((H-L)>3*(O-C)) AND
((C-L)/(.001+H-L)>0.6) AND ((O-L)/(.001+H-L)>0.6)); }
else if(P == 15) { PatternName = "InvertedHammer"; Pv = (((H-L)>3*(O-C))
AND ((H-C)/(.001+H-L)>0.6) AND ((H-O)/(.001+H-L)>0.6)); }
else if(P == 16) { PatternName = "ShootingStar"; Pv = (((H-L)>4*(O-C))
AND ((H-C)/(.001+H-L)>= 0.75) AND ((H-O)/(.001+H-L)>= 0.75)); }
else if(P == 17) { PatternName = "BlackSpinningTop"; Pv = ((O>C) AND
((H-L)>(3*(O-C))) AND (((H-O)/(.001+H-L))<.4) AND
(((C-L)/(.001+H-L))<.4)); }
else if(P == 18) { PatternName = "WhiteSpinningTop"; Pv = ((C>O) AND
((H-L)>(3*(C-O))) AND (((H-C)/(.001+H-L))<.4) AND
(((O-L)/(.001+H-L))<.4)); }
else if(P == 19) { PatternName = "BearishAbandonedBaby"; Pv = ((C1 == O1)
AND (C2>O2) AND (O>C) AND (L1>H2) AND (L1>H)); }
else if(P == 20) { PatternName = "BearishEveningDojiStar"; Pv = ((C2>O2)
AND ((C2-O2)/(.001+H2-L2)>.6) AND (C2<O1) AND (C1>O1) AND
((H1-L1)>(3*(C1-O1))) AND (O>C) AND (O<O1)); }
else if(P == 21) { PatternName = "DarkCloudCover"; Pv = (C1>O1 AND
((C1+O1)/2)>C AND O>C AND O>C1 AND C>O1 AND (O-C)/(.001+(H-L)>0.6)); }
else if(P == 22) { PatternName = "BearishEngulfing"; Pv = ((C1>O1) AND
(O>C) AND (O>= C1) AND (O1>= C) AND ((O-C)>(C1-O1))); }
else if(P == 23) { PatternName = "ThreeOutsideDownPattern"; Pv = ((C2>O2)
AND (O1>C1) AND (O1>= C2) AND (O2>= C1) AND ((O1-C1)>(C2-O2)) AND (O>C) AND
(C<C1)); }
else if(P == 24) { PatternName = "BullishAbandonedBaby"; Pv = ((C1 == O1)
AND (O2>C2) AND (C>O) AND (L2>H1) AND (L>H1)); }
else if(P == 25) { PatternName = "BullishMorningDojiStar"; Pv = ((O2>C2)
AND ((O2-C2)/(.001+H2-L2)>.6) AND (C2>O1) AND (O1>C1) AND
((H1-L1)>(3*(C1-O1))) AND (C>O) AND (O>O1)); }
else if(P == 26) { PatternName = "BullishEngulfing"; Pv = ((O1>C1) AND
(C>O) AND (C>= O1) AND (C1>= O) AND ((C-O)>(O1-C1))); }
else if(P == 27) { PatternName = "ThreeOutsideUpPattern"; Pv = ((O2>C2)
AND (C1>O1) AND (C1>= O2) AND (C2>= O1) AND ((C1-O1)>(O2-C2)) AND (C>O) AND
(C>C1)); }
else if(P == 28) { PatternName = "BullishHarami"; Pv = ((O1>C1) AND (C>O)
AND (C<= O1) AND (C1<= O) AND ((C-O)<(O1-C1))); }
else if(P == 29) { PatternName = "ThreeInsideUpPattern"; Pv = ((O2>C2)
AND (C1>O1) AND (C1<= O2) AND (C2<= O1) AND ((C1-O1)<(O2-C2)) AND (C>O) AND
(C>C1) AND (O>O1)); }
else if(P == 30) { PatternName = "PiercingLine"; Pv = ((C1<O1) AND
(((O1+C1)/2)<C) AND (O<C) AND (O<C1) AND (C<O1) AND
((C-O)/(.001+(H-L))>0.6)); }
else if(P == 31) { PatternName = "BearishHarami"; Pv = ((C1>O1) AND (O>C)
AND (O<= C1) AND (O1<= C) AND ((O-C)<(C1-O1))); }
else if(P == 32) { PatternName = "ThreeInsideDownPattern"; Pv = ((C2>O2)
AND (O1>C1) AND (O1<= C2) AND (O2<= C1) AND ((O1-C1)<(C2-O2)) AND (O>C) AND
(C<C1) AND (O<O1)); }
else if(P == 33) { PatternName = "ThreeWhiteSoldiers"; Pv = (C>O*1.01)
AND (C1>O1*1.01) AND (C2>O2*1.01) AND (C>C1) AND (C1>C2) AND (O<C1) AND
(O>O1) AND (O1<C2) AND (O1>O2) AND (((H-C)/(H-L))<.2) AND
(((H1-C1)/(H1-L1))<.2) AND (((H2-C2)/(H2-L2))<.2); }
else if(P == 34) { PatternName = "DarkCloudCover"; Pv = (C1>O1*1.01) AND
(O>C) AND (O>H1) AND (C>O1) AND (((C1+O1)/2)>C) AND (C>O1) AND
(MA(C,13)-Ref(MA(C,13),-4)>0); }
else if(P == 35) { PatternName = "ThreeBlackCrows"; Pv = (O>C*1.01) AND
(O1>C1*1.01) AND (O2>C2*1.01) AND (C<C1) AND (C1<C2) AND (O>C1) AND (O<O1)
AND (O1>C2) AND (O1<O2) AND (((C-L)/(H-L))<.2) AND (((C1-L1)/(H1-L1))<.2)
AND (((C2-L2)/(H2-L2))<.2); }
else if(P == 36) { PatternName = "doji"; Pv = (O == C); }
else if(P == 37) { PatternName = "GapUp"; Pv = GapUp(); }
else if(P == 38) { PatternName = "GapDown"; Pv = GapDown(); }
else if(P == 39) { PatternName = "BigGapUp"; Pv = L>1.01*H1; }
else if(P == 40) { PatternName = "BigGapDown"; Pv = H<0.99*L1; }
else if(P == 41) { PatternName = "HugeGapUp"; Pv = L>1.02*H1; }
else if(P == 42) { PatternName = "HugeGapDown"; Pv = H<0.98*L1; }
else if(P == 43) { PatternName = "DoubleGapUp"; Pv = GapUp() AND
Ref(GapUp(),-1); }
else if(P == 44) { PatternName = "DoubleGapDown"; Pv = GapDown() AND
Ref(GapDown(),-1); }
return Pv;
}

PatternNameList = "";
for(Cp=0; Cp<=44; Cp++)
{
VarSet("Pattern"+NumToStr(Cp,1.0),CandlePattern(cP ));
PatternNameList = PatternNameList +PatternName+",";
}

BI = BarIndex();
SelectedBar = SelectedValue(BI) -BI[0];
//Selectedbar = Status("lastvisiblebar")-1;
PStr="";
for(Cp=0; Cp<=44; Cp++)
{
Temp = VarGet("Pattern"+NumToStr(Cp,1.0));
if(temp[SelectedBar]) Pstr=Pstr+"#"+NumToStr(Cp,1.0)+" - "+StrExtract(PatternNameList,Cp)+"\n";
}

Title = "\nCandle Demostration \n"+ Pstr;
_SECTION_END();
Reply With Quote
  #7  
Old 31st August 2008, 02:53 PM
Member
 
Join Date: Apr 2007
Posts: 679
Thanks: 70
Thanked 73 Times in 32 Posts
chintan786 will become famous soon enoughchintan786 will become famous soon enough
Reputation: 102
Default Re: candlesticks

Quote:
Originally Posted by rkkarnani View Post
Oh!!! The thread was started way back in 2006!!!
I just came across this , while searching for a relevant thread on Candlestick and posted my link!!!
The person who started it did not seem to have continued!!!
ohhh.. thanks RK.. even i also not seen this....."FOOLED BY RANDOMNESS"
Reply With Quote
  #8  
Old 31st August 2008, 02:57 PM
Member
 
Join Date: Mar 2008
Posts: 194
Thanks: 23
Thanked 19 Times in 13 Posts
vvvv is on a distinguished road
Reputation: 29
Default Re: candlesticks

nifty fut candle - is it bullish kicking ??????
Reply With Quote
  #9  
Old 31st August 2008, 03:12 PM
Member
 
Join Date: Sep 2004
Posts: 1,143
Thanks: 191
Thanked 189 Times in 100 Posts
rkkarnani has a spectacular aura aboutrkkarnani has a spectacular aura aboutrkkarnani has a spectacular aura about
Reputation: 246
Default Re: candlesticks

Hi Leo,
There already exists an Expert in Metastock , which identifies the Candlesticks!
Your AFL may be useful for people using Amibroker!!!
Reply With Quote
  #10  
Old 2nd September 2008, 07:26 PM
Member
 
Join Date: Sep 2008
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
mice0872 is on a distinguished road
Reputation: 10
Default Re: candlesticks

Hi all,

why i am getting this error (See attach) Do i need to add anymore sentence or command line?

just to add on, i do a copy and past from "leo_3455" post. please advise.
Attached Images
File Type: jpg afl.JPG (15.8 KB, 13 views)
Reply With Quote
Sponsored Links

Reply

Bookmarks


Advertise Here


Thread Tools

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 Off
Pingbacks are Off
Refbacks are Off


All times are GMT +5.5. The time now is 12:31 AM.

Indemnity, Disclaimer & Disclosure Notice:
• By visiting Traderji.com you indicate your acceptance of our Forum Rules Disclaimer & Disclosure and indemnify Traderji.com, its associates and related parties of all claims howsoever resulting from the usage of the forum.
Disclaimer: Trading or investing in stocks & commodities is a high risk activity. Any action you choose to take in the markets is totally your own responsibility. Traderji.com will not be liable for any, direct or indirect, consequential or incidental damages or loss arising out of the use of this information.
Disclosure: The information in this forum is neither an offer to sell nor solicitation to buy any of the securities mentioned herein. The writers may or may not be trading in the securities mentioned.
• All names or products mentioned are trademarks or registered trademarks of their respective owners.
General Content Disclaimer Notice:
In light of our policy of encouraging candid, open exchanges of views and the rapid distribution of information originating from many sources, Traderji.com cannot determine the accuracy of information that may be uploaded to the forum. Opinions, advice and all other information expressed by participants in discussions are those of the author. You rely on such information at your own risk. You are urged to seek professional advice for specific, individual situations and not rely solely on advice or opinions given in the discussions. Since Traderji.com is an open and free discussion forum, any comments made by members of this forum in their posts reflect their own views and not of the owner or administrator of Traderji.com. Thus the owner/administrator indemnify themselves of all claims whatsoever and will not be liable or responsible for any members comments/views in this forum Traderji.com. If you find any objectionable or offensive posts made by members of this forum which you would like to bring to our notice for removal then please Contact Us.
 


Copyright © 2001 - 2008, Traderji.com All Rights Reserved.

Recommended Websites - www.TradersEdgeIndia.com - www.TradingPicks.com - www.MasterOfTrading.com