Trading With CrossOver And BB

Status
Not open for further replies.

docvijay4u

Well-Known Member
Arvind Reading In The Chart Are Visual If You'r Interested In AFL It's Over Here (Based On SavantJi's Positional System i.e. 5/6 SMA You Can Easily Edit It For Intraday System):

http://www.traderji.com/amibroker/27489-help-need-afl-savantjis-system-3.html#post300334

Detail Explanation Of AFL:

http://www.traderji.com/amibroker/27489-help-need-afl-savantjis-system-2.html#post299683

Thanks.:)

Hi,

Nice Screenshot.

Got a small catch in that...

Can you share that AFL

Regards,
Arvind
 

itzarvind

Well-Known Member
Doc,

Thanks for sending AFL,

I have tried this.

AM using EOD in AMIBROKER 5.00

I have attached the screenshot.

Let me know, whether am in the right direction or not.

To be frank i dont know anything about using this software.

As you people are trying this, am also trying along with you guys, so that i can learn something from it.

How can i get realtime data in AMIBROKER.

How can i configure it,

Please guide me.

Regards,
Arvind


Arvind Reading In The Chart Are Visual If You'r Interested In AFL It's Over Here (Based On SavantJi's Positional System i.e. 5/6 SMA You Can Easily Edit It For Intraday System):

http://www.traderji.com/amibroker/27489-help-need-afl-savantjis-system-3.html#post300334

Detail Explanation Of AFL:

http://www.traderji.com/amibroker/27489-help-need-afl-savantjis-system-2.html#post299683

Thanks.:)
 
Last edited:

docvijay4u

Well-Known Member
Arvind You'r Doing Well. Ami Is Easy To Use And I'm Sure You Will Catch It Soon. Try Automatic Analysis To Get Trigger, AFL Is Created To Get Those Buy Sell Trigger. Right Now AFL Is In Beta Form, Trying To Do Little Advanced AFL For Getting Signal Only After Confirmation Of CrossOver(Like On 2/3 Bar After Crossover). I Will Post That When It's Ready.

Although I Don't Use Ami For Getting Realtime Quotes/Charts, I Find Following Thread Useful For Getting Realtime Data To Ami For Free:

http://www.traderji.com/software/24...ker-metastock-fcharts-excel-txt-backfill.html

For Using Paid DataFeed Service, You May Ask Help In DataFeed Section:

http://www.traderji.com/data-feeds/

Thanks.:)

Doc,

Thanks for sending AFL,

I have tried this.

AM using EOD in AMIBROKER 5.00

I have attached the screenshot.

Let me know, whether am in the right direction or not.

To be frank i dont know anything about using this software.

As you people are trying this, am also trying along with you guys, so that i can learn something from it.

How can i get realtime data in AMIBROKER.

How can i configure it,

Please guide me.

Regards,
Arvind
 
Last edited:

itzarvind

Well-Known Member
Hi Doc,

We have 5 sections in that AFL, more or less all looks the same with only slight variations such as Volume and other stuffs..etc..

Again starting with my silly questions, do we have to copy all the 5 parts, because, am getting repetative values in the chart.

I think i have made a mistake somewhere. Please correct me..

Attached the snapshot to get a clear view.

When you are free let me know your comments on it..

Also if possible, share the Triggers generated by the Automatic analysis, so that, all here can check whether "Are we sailing in the same Boat" or not.

Regards,
Arvind
 
Last edited:

docvijay4u

Well-Known Member
I Guess First You Manually Plotted Indicator And Second You Also Dragged AFL Over Chart. That Is Why You Are Getting Duplicate Entries In ToolTip.

To Get Rid Of It See Line In Upper Part Of Chart Which Mentions About Scrip Name, TF, Open, High, Low, Close, MA5 Etc. Etc. Now Right Click Over There And Delete Duplicate Entry. If You'r Confused Which One Is Correct Delete All Except Price And Drag AFL Over Chart. This Should Solve Your Problem.

I Will Post Chart Of Automatic Analysis After Little Time.

Thanks.:)

Hi Doc,

We have 5 sections in that AFL, more or less all looks the same with only slight variations such as Volume and other stuffs..etc..

Again starting with my silly questions, do we have to copy all the 5 parts, because, am getting repetative values in the chart.

I think i have made a mistake somewhere. Please correct me..

Attached the snapshot to get a clear view.

When you are free let me know your comments on it..

Also if possible, share the Triggers generated by the Automatic analysis, so that, all here can check whether "Are we sailing in the same Boat" or not.

Regards,
Arvind
 
Last edited:

itzarvind

Well-Known Member
Doc,

Deleted all, except Price and dragged that AFL, Since there are 5 parts in AFL, it creates 5 entries, Still the same..

Moreover am not getting the buy sell (Arrow indication).

After reaching Home, will post the AFL, so that you can have a look at it,

Also, you have mentioned that you are not using AmiBroker for the charts,

Which charting software do you use?

Regards,
Arvind
 

itzarvind

Well-Known Member
Doc,

Here we go,

I have attached the chart for your reference.

Here is the AFL which i have.

Let me know whats the Problem? What went Wrong.


=========================================================
_SECTION_BEGIN("Price MA BB");

Plot(MA(C,5),"MA C 5", colorRed,styleLine);
Plot(MA(C,6),"MA C 6", colorBlack,styleLine);
Plot(BBandTop( Close, 9, 2 ), "BBandTop 9 2", colorBlue,styleLine);
Plot(BBandBot( Close, 9, 2 ), "BBandBot 9 2", colorBlue,styleLine);
Buy = Cross(MA(C, 5), MA(C, 6));
Sell = Cross(MA(C, 6), MA(C, 5));

_SECTION_END();

_SECTION_BEGIN("Price MA BB");

Plot(MA(C,5),"MA C 5", colorRed,styleLine);
Plot(MA(C,6),"MA C 6", colorBlack,styleLine);
Plot(BBandTop( Close, 9, 2 ), "BBandTop 9 2", colorBlue,styleLine);
Plot(BBandBot( Close, 9, 2 ), "BBandBot 9 2", colorBlue,styleLine);
Buy = Cross(MA(C, 5), MA(C, 6)) AND V > 250000;
Sell = Cross(MA(C, 6), MA(C, 5)) AND V > 250000;

_SECTION_END();

_SECTION_BEGIN("Price MA BB");

Plot(MA(C,5),"MA C 5", colorRed,styleLine);
Plot(MA(C,6),"MA C 6", colorBlack,styleLine);
Plot(BBandTop( Close, 9, 2 ), "BBandTop 9 2", colorBlue,styleLine);
Plot(BBandBot( Close, 9, 2 ), "BBandBot 9 2", colorBlue,styleLine);
Avg_vol = (Ref(Volume,-4)+ Ref(Volume,-3)+ Ref(Volume,-2)+ Ref(Volume,-1)+ Volume)/5;
Buy = Cross(MA(C, 5), MA(C, 6)) AND Avg_vol > 250000;
Sell = Cross(MA(C, 6), MA(C, 5)) AND Avg_vol > 250000;

_SECTION_END();

_SECTION_BEGIN("Price MA BB");

Plot(MA(C,5),"MA C 5", colorRed,styleLine);
Plot(MA(C,6),"MA C 6", colorBlack,styleLine);
Plot(BBandTop( Close, 9, 2 ), "BBandTop 9 2", colorBlue,styleLine);
Plot(BBandBot( Close, 9, 2 ), "BBandBot 9 2", colorBlue,styleLine);
Avg_vol = (Ref(Volume,-4)+ Ref(Volume,-3)+ Ref(Volume,-2)+ Ref(Volume,-1)+ Volume)/5;
Buy = Cross(MA(C, 5), MA(C, 6)) AND Close > Open AND Avg_vol > 250000;
Sell = Cross(MA(C, 6), MA(C, 5)) AND Close < Open AND Avg_vol > 250000;

=========================================================

Regards,
Arvind
 
Last edited:

docvijay4u

Well-Known Member
Arvind These Are Four Different AFLs, Looks Like You'r Using Them As A Single AFL Please Re-Read Post In Ami Thread. 'Choose One Which Suits You'.

Thanks.:)

Doc,

Here we go,

I have attached the chart for your reference.

Here is the AFL which i have.

Let me know whats the Problem? What went Wrong.


Regards,
Arvind
 

itzarvind

Well-Known Member
Doc,

Great,

Sorry about the fact that i did a mistake and troubled you.

Got it, As we discussed, please share the Triggers that you got using this AFL, so that we can check whehter " Are we sailing in the same boat or not"

Regards,
Arvind
 
Status
Not open for further replies.