ramaParticipant
Senior
I want to run the programs in time frame 1 min or less
my variable will be volume example in this case volume=900
I want to buy at lowest of 4 bars in the volumes chart as per the picture( as the program does not run in volume chart)
I wan help in the code
I wrote the following code seems to not work
c2=volume
c1=(c2=900)
c5=lowest[4](c1)
if c5 then
k1=1
else
k1=0
endif
return k1
You want to identify the bar that has the lowest volume in the last 4 ones? What is 900 and why?
ramaParticipant
Senior
Basically
on a volume chart I want place orders as per the screen shot, Screen shot is 5432 volume chart on dow.
if it was normal candle stick of any time frame would place an order at buy at lowest[n](low)+x stop
however this is not possible on volume on chart hence I need equivalent code on time chats.
I would like to place this orders on time frame 2 seconds
my variable will be volume =5432
So you want to simulate Volume bars on a normal price chart? Because we can’t use Volume chart with ProOrder? Quite challenging..
ramaParticipant
Senior
yes , that is correct I want to simulate the volume bars on normal price chart also I should be place an order as well
example
volume=5300
c1=volume
buy at lowest[3](c1)
my by should happen in time frame 2 seconds( it is easy for me to move to break even at the earliest in 2 sec, 2 second time frame works perfect, 1 second sometimes stopping )