Welcome to the Traders Laboratory Forums.
Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Old 02-20-2007, 06:56 AM   #1

Join Date: Feb 2007
Posts: 1
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Interesting Initial Balance Statistic

I tried to follow ant's way and wanted to do some stats regarding Initial Balance and other stuff. However I got stuck with my EasyLanguage skills. This is what I thought could be a start.

var: counter(0), howOften(0);

if TimeOfHigh <= 1030
then counter= counter+1;
howOften= (counter/barNumber)*100;
Plot1(howOften,"madeHigh" );

For the TimeOfHigh I used:

Variables:
TimeOfHigh (0),
TimeOfLow (0),
HiHi (0) ,
LoLo (99999);

if date <> date[1] then
begin
HiHi = 0;
LoLo = 99999;
end;

if high > HiHi then
begin
TimeOfHigh = time;
HiHi = high;
end;
if low < LoLo then
begin
TimeOfLow = time;
LoLo = low;
end;

Maybe the TimeOfHigh is what causes headache. HighD(0) does of course not work in this context. Can anyone point me in the right direction? I appreciate any help.
mokka is offline  
Reply With Quote

Reply

Thread Tools
Display Modes Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
Playing the Initial Balance TinGull Market Profile 13 10-19-2011 09:48 AM
Interesting Initial Balance Statistic ant Market Profile 38 05-12-2011 03:53 PM
Average Initial Balance Soultrader Market Profile 4 01-10-2007 09:15 PM
Another interesting week for the Dow Soultrader Market Analysis 0 09-02-2006 09:18 AM

All times are GMT -4. The time now is 11:17 AM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.