Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

hrokling

Multicharts: Working with Hours on 1min Bars

Recommended Posts

So far I'm struggling with a piece of code for my new system. I want to base my strategy upon the hourly open, but at the same time use 1-min bars for some accuracy when backtesting.

 

My intention was to use the variable LastBarTime+2 to compare for instance 1000 to 0959+2 and thus identify that a new hour had started. But, this method doesn't work for me. Anyone familiar with the time functions care to offer anything on this?

 

[intrabarOrderGeneration = true]

Inputs:Equity( 1000000 ),
Price ( Close ),
OpenPrice( Open ),
BreakOutValue ( 0.0015 ),
ProfitTarget (0.0005),
EMALength (120),
AutoTrading (False);

Variables: 	StopPrice(0),
	LastBarTime(0),
	HourlyOpen(0),
	EMAValue(0),
	ForcePositionClose(0),
	PositionThisHour(0);

// ******************************

SetStopShare;

If Time > (LastBarTime+2) then
begin
HourlyOpen = OpenPrice;
LastBarTime = Time;
PositionThisHour = 0;
if marketposition <> 0 then ForcePositionClose=1;
end;

EMAValue = XAverage (Price, EMALength);

// *** Long Entry Order ***
If HourlyOpen > EMAValue and marketposition = 0 and PositionThisHour = 0 then
begin
Buy ("Long") (Equity+NetProfit)/OpenPrice Contracts next bar at (HourlyOpen + BreakOutValue) stop;
StopPrice = OpenPrice;
end;


// *** Short Entry Order ***
If HourlyOpen < EMAValue and marketposition = 0 and PositionThisHour = 0 then
begin
SellShort ("Short") (Equity+NetProfit)/OpenPrice Contracts next bar at (HourlyOpen - BreakOutValue) +1 point stop;
StopPrice = OpenPrice;
end;


// *** Set Profit Target and Stop Loss ***
if marketposition > 0 then SetProfitTarget (HourlyOpen+ProfitTarget);
if marketposition < 0 then SetProfitTarget (HourlyOpen-ProfitTarget);
if marketposition <> 0 then SetStopLoss (BreakOutValue);


// *** Time Stops ***
if marketposition < 0 and ForcePositionClose=1 then
begin
Buy To Cover ( "TimeSX" ) next bar at market;
ForcePositionClose = 0;
end;

if marketposition > 0 and ForcePositionClose=1 then
begin
Sell ("TimeLX") Next Bar at market;
ForcePositionClose = 0;
end;

if marketposition <> 0 then PositionThisHour = 1;

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.