Traderji.com - Discussion forum for Stocks Commodities & Forex

Experiments in Technical Analysis

Discuss Experiments in Technical Analysis at the Technical Analysis within the Traderji.com - Discussion forum for Stocks Commodities & Forex; Thanks to Karthik and Abhay for their effort. Now, I want some guidance from aca_trader. ...


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
  #191  
Old 10th September 2006, 07:08 PM
Member
 
Join Date: Jul 2005
Posts: 107
Thanks: 2
Thanked 4 Times in 2 Posts
moneypick is on a distinguished road
Reputation: 27
Default Re: Experiments in Technical Analysis

Thanks to Karthik and Abhay for their effort. Now, I want some guidance from aca_trader.


(moneypick)
Reply With Quote
Sponsored Links
  #192  
Old 10th September 2006, 08:01 PM
Member
 
Join Date: Feb 2006
Posts: 355
Thanks: 0
Thanked 0 Times in 0 Posts
rahulg77 is on a distinguished road
Reputation: 20
Default Re: Experiments in Technical Analysis

Quote:
Originally Posted by aad View Post
Dear Rahul,

Yes.. you have to put entire formula in filter column. Since you are curious to know how it is written, here is the explaination, line by line.

EMA23:=Mov(C,23,E);

Here, we have defined a variable EMA23 (you can give any name) as moving average (MOV) of closing price (C) of 23 candles (23) and it is exponential type (E). When you are in filter column, click on the "functions" button to see all the functions and their syntax. Here if you replace E by S, it will calculate Simple MA.

EMA30:=Mov(C,30,E);

Same as above. Only thing replaced is no. of candles i.e. 30.

These first 2 lines are just the definitions of the variables. Now comes the condition in the last line. The exploration will show only those scrips which will satisfy following condition.

C>=EMA23 AND C>=EMA30 AND Ref(C,-1)<EMA23 AND Ref(C,-1)<EMA30;

In this condition, we need to now check if today's closing price (C) is more than or equal to (>=) EMA23 and (AND) EMA30. Alongwith these 2 conditions, you also want to satisfy the conditions that yesterday's closing price (ref(C,-1) - here we are referring to (ref) closing price (C) one day prior. -1 denotes 1 candle prior, -2 if used, will denote 2 candles prior... and so on) is less than (<) EMA23 and (AND) EMA30.

Since we have used the operator AND inbetween all these conditions, the exploration will show those scrips which satisafy ALL of these 4 conditions. You can also use OR, if-then loop, etc. as per your needs.

Note that I have used "candles" and not "days". So, when you change the periodicity (daily, weekly, quarterly, hourly... and so on), calculation still holds good. i.e. when charts are viewed with daily periodicity, EMA23:=Mov(C,23,E) will calculate 23 "day" EMA of closing price. When periodicity is changed to weekly, the same above formula will calculate 23 "week" EMA of closing price, and so on.

I hope this helps. Please let me know if you still have any doubts.

With regards,

Abhay
Hi Abhay,

It is very very clear. Thanks. I think lot of formulaes would make sense to me now. Can we also write this is as

Mov Avg:=Mov(C,23,E); Or do we have to write EMA23. And if we do use Move Avg then in condition we would write c>=Mov avg. Is it case sensitive. Also we want only when closing price is more than 23 and 30 day can we remove the = sign and write c>ema23.

Thankyou again

Rahul
Reply With Quote
  #193  
Old 11th September 2006, 01:12 AM
aad aad is offline
Member
 
Join Date: Jul 2006
Posts: 244
Thanks: 6
Thanked 23 Times in 7 Posts
aad is on a distinguished road
Reputation: 46
Default Re: Experiments in Technical Analysis

Quote:
Originally Posted by moneypick View Post
Thanks to Karthik and Abhay for their effort. Now, I want some guidance from aca_trader.


(moneypick)
Also, Sudhir can provide you with required code. He already has a thread running at http://www.traderji.com/metastock/73...ck-expert.html

With regards,

Abhay
Reply With Quote
  #194  
Old 11th September 2006, 01:31 AM
aad aad is offline
Member
 
Join Date: Jul 2006
Posts: 244
Thanks: 6
Thanked 23 Times in 7 Posts
aad is on a distinguished road
Reputation: 46
Default Re: Experiments in Technical Analysis

Quote:
Originally Posted by rahulg77 View Post
Hi Abhay,

It is very very clear. Thanks. I think lot of formulaes would make sense to me now. Can we also write this is as

Mov Avg:=Mov(C,23,E); Or do we have to write EMA23. And if we do use Move Avg then in condition we would write c>=Mov avg. Is it case sensitive. Also we want only when closing price is more than 23 and 30 day can we remove the = sign and write c>ema23.

Thankyou again

Rahul
Hi Rahul,

You cannot write "Mov Avg" as they are 2 words. You have to write movAvg, MovAvg, Mov_Avg, etc. so that it is one word. Please note that mov is a system reserved name for a function and you cannot use it as it is i.e. mov:= is not acceptable.

As I said, EMA23 is just a name to understand from the variable name what its characteristics are. So give a sensible name which, even if you see after 6 months, will immediately tell you what it does. You can write XYZ also instead of EMA23 but it does not make sense when you see the code after a long time or when you pass on this code to someone who does not know anything about this exploration as to what it does.

Although MetaStock does not care for case-sentivity i.e. EMA23 is same as eMA23 or emA23, etc., from a prgrammer's point of view, it is better to have some convention followed when it comes to case-sensitivity. It is especially useful when you want to transfer your formulae from one software to another which does follow case-sensitivity strictly. So, try to maintain same convention throughout.


Quote:
Also we want only when closing price is more than 23 and 30 day can we remove the = sign and write c>ema23.
Yes, you can remove = sign. But I have deliberately included the same to cover the entire range so that an eligible candidate should not be removed from the exploration just because it is equal to EMA23 or EMA30 (I hope you also would'nt want that).

Regards,

Abhay
Reply With Quote
  #195  
Old 11th September 2006, 04:46 PM
Member
 
Join Date: Feb 2006
Posts: 355
Thanks: 0
Thanked 0 Times in 0 Posts
rahulg77 is on a distinguished road
Reputation: 20
Default Re: Experiments in Technical Analysis

Quote:
Originally Posted by aad View Post
Hi Rahul,

You cannot write "Mov Avg" as they are 2 words. You have to write movAvg, MovAvg, Mov_Avg, etc. so that it is one word. Please note that mov is a system reserved name for a function and you cannot use it as it is i.e. mov:= is not acceptable.

As I said, EMA23 is just a name to understand from the variable name what its characteristics are. So give a sensible name which, even if you see after 6 months, will immediately tell you what it does. You can write XYZ also instead of EMA23 but it does not make sense when you see the code after a long time or when you pass on this code to someone who does not know anything about this exploration as to what it does.

Although MetaStock does not care for case-sentivity i.e. EMA23 is same as eMA23 or emA23, etc., from a prgrammer's point of view, it is better to have some convention followed when it comes to case-sensitivity. It is especially useful when you want to transfer your formulae from one software to another which does follow case-sensitivity strictly. So, try to maintain same convention throughout.




Yes, you can remove = sign. But I have deliberately included the same to cover the entire range so that an eligible candidate should not be removed from the exploration just because it is equal to EMA23 or EMA30 (I hope you also would'nt want that).

Regards,

Abhay

Thank You Abhay.

Rgds

Rahul
Reply With Quote
  #196  
Old 11th September 2006, 08:38 PM
Member
 
Join Date: Jul 2006
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
Vinayak is on a distinguished road
Reputation: 20
Default Re: Experiments in Technical Analysis

how do I download and use BSE - EOD data for F charts SE
================================================== =====

Hi

1. Is there a quick way to download this EOD data down loader without a rapid share account

2. does this EOD data down loader, help in downloading BSE - EOD data as well ?

3. if NOT how do I download and use BSE - EOD data for F charts SE
Reply With Quote
  #197  
Old 12th September 2006, 12:32 AM
Member
 
Join Date: Feb 2006
Posts: 1,616
Thanks: 0
Thanked 4 Times in 4 Posts
aca_trader is on a distinguished road
Reputation: 35
Default Re: Experiments in Technical Analysis

Quote:
Originally Posted by moneypick View Post
Thanks to Karthik and Abhay for their effort. Now, I want some guidance from aca_trader.


(moneypick)
I wish I could do that. Sorry moneypick! Not much conversant with formula language.
I am sure somebody would be able to help you.

Best Regards,
-Ashish
Reply With Quote
  #198  
Old 12th September 2006, 06:24 AM
Member
 
Join Date: May 2006
Location: abu dhabi, uae.
Posts: 103
Thanks: 0
Thanked 2 Times in 1 Post
ger06 is on a distinguished road
Reputation: 22
Default Re: Experiments in Technical Analysis

Dear Karthik
Hi.

PHP Code:
for stop lossi liked ur "volatility based stop system"i.e.,
3*atr (initial risk), as it eliminates the risk of market noise to hit ur stop, if we place stop at 5below ur entry price, as dave landry suggestsbut i would like to add"always put ur stop,below the recent
pivot low or "
3*atr or 2*atr", whichever is lower" and check the pivot low in "weekly chart"which gives a strong support area
Please will u provide me a formula (AFL) to plot trending stop loss in Amibroker.

Thanks.
Reply With Quote
  #199  
Old 12th September 2006, 12:35 PM
Member
 
Join Date: Mar 2006
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
prakash.jj is on a distinguished road
Reputation: 20
Default Re: Experiments in Technical Analysis

Quote:
Originally Posted by casoni View Post
Hello Everybody,
Posting Alf On Behalf Of Mr Karthik.r....which Will Explore \ Scan Database In Few Seconds And Gives Best Buy\sell Security Based On Five Best Indicators,i Am Posting In Behalf Of Karthik.r {sir}, Because He Guided From Very First Step To Build This Explorer,who I Belive Is Best Person In This Forum , Who Talks Less And Gives More ,and [sir]deserves All The Credit....thank You
Hello Casoni,

I can see only the screen shot, where is the the AFL for for this, could you pls post the same...thanks
Reply With Quote
  #200  
Old 12th September 2006, 02:08 PM
Member
 
Join Date: Aug 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
bullsnbears is on a distinguished road
Reputation: 20
Default Re: Experiments in Technical Analysis

hi i m a technical trader myself and always eager to learn and experiment with new trading methods. i m using 5min, 30min and 60 min charts for intra as well as overnite positions. will love to know ur ideas
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

Similar Threads for: Experiments in Technical Analysis
Thread Thread Starter Forum Replies Last Post
Technical Analysis Course snowy Technical Analysis 28 7th November 2008 07:37 PM
Technical analysis course sh50 Seminars & Tutors 18 10th June 2007 03:46 PM
Hello everybody.Technical Analysis vijay chauhan Introductions 2 30th May 2007 03:09 PM
Technical Analysis crosscurrency Forex 0 30th October 2005 11:00 PM


All times are GMT +5.5. The time now is 06:38 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