Go Back   Traders Laboratory > Trading Resources > Trading Indicators > Coding Forum

Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Bookmarks
del.icio.us StumbleUpon Google Digg Facebook Furl Reddit Netscape

 
LinkBack (1) Thread Tools Display Modes Language
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 02-20-2007, 06:56 AM
mokka mokka is offline
Registered Trader

 
Join Date: Feb 2007
Posts: 1
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.

Reply With Quote
Reply

LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f56/re-interesting-initial-balance-statistic-1231.html
Posted By For Type Date
Coding Forum [Archive] - Traders Laboratory - Active Traders Forum This thread Refback 10-27-2007 04:47 PM


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Interesting Initial Balance Statistic ant Market ProfileŽ 35 02-18-2008 01:05 PM
Playing the Initial Balance TinGull Market ProfileŽ 8 02-28-2007 02:10 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 07:11 PM.

 


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59