Daily signals on intraday data..

#1
Hi, i need a help with my system. Rules are: in trading all the time simply switching from long to short and from S to L if conditions are met. Max one signal per day, its simple system, signals looks like this example:

open short if price = open price minus x points
open long if price = open price plus y points

buy and sell parameters looks like this:

Buy=Cover=H>=channelA;
Sell=Short=L<=channelB;

problem is that its not working because amibroker is reading only daily High and Low so if we have session like this:

open at 1300, fall to 1250 then rise to 1310

system should take short position (open minus lets say 10 points)

but amibroker in this case often will show long as a signal because it doesnt care about sequence of data (that first there was fall and then rise of price), its obvious if he reads only OHLC data

but i have 5 minute data but i dont know how to force amibroker to read it (i mean proper sequence of data, it still only read high and low)

i tried timeframeset function but it doesnt work or maybe i dont know how to use it

what should i do to force amibroker to check intraday data and sequence of price ?

thanks for any help, i can even pay for that (PM if you're interested) because im SO FRUSTRATED

i think its easy to solve but i have completely no skills in programming/coding so i really dont have a idea..
 
#2
Hi, i need a help with my system. Rules are: in trading all the time simply switching from long to short and from S to L if conditions are met. Max one signal per day, its simple system, signals looks like this example:

open short if price = open price minus x points
open long if price = open price plus y points

buy and sell parameters looks like this:

Buy=Cover=H>=channelA;
Sell=Short=L<=channelB;

problem is that its not working because amibroker is reading only daily High and Low so if we have session like this:

open at 1300, fall to 1250 then rise to 1310

system should take short position (open minus lets say 10 points)

but amibroker in this case often will show long as a signal because it doesnt care about sequence of data (that first there was fall and then rise of price), its obvious if he reads only OHLC data

but i have 5 minute data but i dont know how to force amibroker to read it (i mean proper sequence of data, it still only read high and low)

i tried timeframeset function but it doesnt work or maybe i dont know how to use it

what should i do to force amibroker to check intraday data and sequence of price ?

thanks for any help, i can even pay for that (PM if you're interested) because im SO FRUSTRATED

i think its easy to solve but i have completely no skills in programming/coding so i really dont have a idea..
To help you I would need to know the code. Send it to me (PM) if you are interested. I do not want to promise anything but I presume I can help you. For free :)
 

Similar threads