Rank: Newbie
Groups: Registered, Registered Users, Subscribers Joined: 3/2/2008(UTC) Posts: 1
|
I am searching for Metastock code that can identify the Bearish Kicker and Bullish Kicker candlestick patterns. They are also known has Bearish Kicking and Bullish Kicking. I did see some talk about the Bullish Kicking pattern on the forum.equis.com website, but it did not contain useful information.
This website provides information on the Kicker patterns: http://www.candlestickforum.com/PPF/Parameters/12_63_/candlestick.asp
If any of you have code for these patterns or can develop the code, can you please share it with me?
Thanks.
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers, Unverified Users Joined: 10/28/2004(UTC) Posts: 3,111 Location: Perth, Western Australia
Was thanked: 16 time(s) in 16 post(s)
|
cseymour, Welcome to the Forum. Before we crack on and get you sorted out for your candlestick formula, you should cover some ground rules first. Please don't make repetative posts or multi-post. They are not permitted; they do not get reponses faster (in fact many consider it a form of spamming and will ignore all of your posts.) If you don't know which section to make your post, put it in a very general section or classify it as best you can and either add a note to the Admin/Mods to move the post to a more appropriate area, or contact them via PM. Second, the purpose of the Forum is not to write your codes for you. The forum is designed to assist you to fix mistakes when you write your code or get stuck overcoming a limitation of the coding language or end up results that are far from what you expected. When requesting coding assistance, to get a prompt reply you should post your best attempt at achieving the goal, along with a full explanation of what you think the code should be doing and a full explanation of why the code you posted is not achieving this goal. When it can be seen that you have put in some effort yourself, then, one of the Fourm members will give you their time to help you. "Give a man a fish.... teach a man to fish..." But how does one learn to write code in the first place? Read the MS Users Manual that came shipped with your copy of MS. After you have read this (cover to cover) a few times, download the free Equis Formula Primer from the downloads section, read this and work through the basic exercises designed to give more than enough knowledge to code the candlestick formations you are seeking, and much much more. To see how "easy" this stuff is, try this as a solution for your problem: Code:
{derived for MS from http://www.candlestickforum.com/PPF/Parameters/12_63_/candlestick.asp}
{1 = Bull}
{-1 = Bear}
{0 = no signals or both signal, if possible}
{Bullish Kicker Signal}
Bull:=
Ref(O,-1) > Ref(C,-1) AND
O >= Ref(O,-1) AND
C > O;
{Bearish Kicker Signal}
Bear:=
Ref(O,-1) < Ref(C,-1) AND
O <= Ref(O,-1) AND
C <= O;
{plot}
Bull-Bear;
Hope this helps. wabbit [:D]
|
|
|
|
Users browsing this topic |
Guest (Hidden)
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.