Augubhai's ORB System

augubhai

Well-Known Member
#91
Hi Augubhai,

I have been using your 'Augubhai's ORB System v1.1' AFL to test things I'm learning from Avny's thread.

I however had trouble switching to 3min TF from the default 5min in your AFL.

Now I'm not very proficient with Amibroker. When I go to the 'parameters', it allows me to change start and end time date along with the percentages.

When I shift to 3 min using Ami's setting, the yellow band still depicts the 5 min range.

Can something be done about this ?

Thanks.
Hi Nirav,

I will have a look at the code. BTW, I am back to trading ORB in this series. Today, booked profit about an hour back using trailing stops. Loads of free time... :)
 

augubhai

Well-Known Member
#92
Hi Augubhai,

I have been using your 'Augubhai's ORB System v1.1' AFL to test things I'm learning from Avny's thread.

I however had trouble switching to 3min TF from the default 5min in your AFL.

Now I'm not very proficient with Amibroker. When I go to the 'parameters', it allows me to change start and end time date along with the percentages.

When I shift to 3 min using Ami's setting, the yellow band still depicts the 5 min range.

Can something be done about this ?

Thanks.
Hi Nirav,

Replace the the following lines that occur in the beginning of the code:
Code:
//--Intraday time frame 
TimeFrameSet(in5Minute); //If reseting, check formula for TimeFrameInMinutes 
TimeFrameInMinutes = 5;
with the following lines:
Code:
//--Intraday time frame 
TimeFrameSet(in1Minute); //If reseting, check formula for TimeFrameInMinutes 
TimeFrameInMinutes = 1;
Then in the next section that defines params, replace the following line:
Code:
EntryTimeStart = ParamOptimize("Entry Time Start (Minutes)", 5, 5, 120, 5);
with the following line:
Code:
EntryTimeStart = ParamOptimize("Entry Time Start (Minutes)", 1, 1, 120, 1);
Save the AFL. Then right click chart, go to the parameters and click the "Reset all" button. Change parameters if necessary, and check if it works.
 
Last edited:

nirav_j

Well-Known Member
#94
Hi Nirav,

Replace the the following lines that occur in the beginning of the code:
Code:
//--Intraday time frame 
TimeFrameSet(in5Minute); //If reseting, check formula for TimeFrameInMinutes 
TimeFrameInMinutes = 5;
with the following lines:
Code:
//--Intraday time frame 
TimeFrameSet(in1Minute); //If reseting, check formula for TimeFrameInMinutes 
TimeFrameInMinutes = 1;
Then in the next section that defines params, replace the following line:
Code:
EntryTimeStart = ParamOptimize("Entry Time Start (Minutes)", 5, 5, 120, 5);
with the following line:
Code:
EntryTimeStart = ParamOptimize("Entry Time Start (Minutes)", 1, 1, 120, 1);
Save the AFL. Then right click chart, go to the parameters and click the "Reset all" button. Change parameters if necessary, and check if it works.
Thanks Augubhai, this is just what I needed .. :)
 

suri112000

Well-Known Member
#95
Dear Augubhai,

I just happend to see this thread on ORB system.

Let me check if my trading system can be backtested using your AFL. If not, I will come back to this thread to request you to incorporate my rules in the AFL. Hope you donot mind in doing that.

truly,
suri
 

augubhai

Well-Known Member
#96
#97
I am new to Traderji. Fascinating strategy you have here, Augubhai. Can you please guide me whether this will work if I am intra-day trading Nifty Index OPTIONS only based on OHLC Charts of the PREMIUMS? Thanks in advance. Regards.
 

Similar threads