Experiments in Technical Analysis

kkseal

Well-Known Member
when will you learned guys unveil macd histogram expert for spotting macd histogram divergences?
Use Tradestation Probably has a built-in IsDivergence function. For any other s/w you'll have to code it on your own. If you use Amibroker you may find some code in the Amibroker Formula Library. Can't say how good or bad they're though.

And be careful of acting blindly on divergences.

Regards,
Kalyan.
 
Dear Rahulg77,

As pointed out by Karthik in his answer to your question, trailing stop-loss is one of the ways to protect your profits (as well as capital), once prices start going up. I am giving below a formula that I use in MetaStock (as an indicator). I just move my stoploss figure to the one shown by this indicator. I call it SafeZone

I have derived it by reading "Come into my trading room by Alexander Elder", with some modifications. Expect everyone to comment on its usefulness as trailing stoploss.

-------
multiFactor:=Input("Enter factor of agressiveness",0.5,2,1.5);
stopLoss:=If(L>=Ref(L,-1),Ref(L,-1)+multiFactor*(L-Ref(L,-1)),Ref(L,-1));
Mov(stopLoss,9,E);
-------

Here, if you use higher factor of agressiveness, say 2, you will be able to lock-in max. profits but a little higher volatility during the day may square-off your long position. Generally, I have observed that a factor of 1.5 works very well.

As a rule, I enter long position only after the price (open/high/low/close) is above SafeZone, of course after looking at other details.

With regards,

Abhay (AAD)

Dear Abhay,

Today, while surfing through pages, i came across your formula for stoploss. i want to use it. i am not into intraday and new to trading/investing. i want to know if i am to write this formula in MS-excel to use it, right? Secodly, what do you mean by safezone?

hope t hear from you soon.

regards,

raju
 
Hi!
With some basic things I managed to learn from this beautiful forum, I altered a few things in some expert formulas and created an expert(in metastock).
I have posted the expert at http://www.traderji.com/147752-post186.html

I request the Members and especially Senior traders to try out this expert and give their valued views. Pls also suggest any better experts than this which will help me to develop my knowledge.

Thank You
 
Hi, I am new to trading. I am a day trader. I want to know the different formulas/technical analysis used for day trading. can anyone help
Since you are new to trading, I'd suggest you to read "Teach a Man to fish..." by Saint. It's a very good collections of trading concepts by our greatly enlightened guru, Saint.
The articles speak of the basic fundamentals of trading and will surely help you in building concepts.

Here's the link for the compiled PDF version of the articles by Saint:
http://www.traderji.com/138424-post1017.html
And, here's the link for the thread:
http://www.traderji.com/trading-technicals/6072-teach-man-fish.html

{ By the way, there is no difference in parameters used in day trading and swing trading. It's all the same, just the timeframes are different. }
Cheers
djsinha
 
Last edited:
The last time I checked, the expert was downloaded around 50 times.
I would really appreciate any comments on it (Good or Bad). It would help me to gain some knowledge and develop a better system.

Thank You
 

Similar threads