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.

suriNotes

Suri.isTradingDay (EasyLanguage Function)

Recommended Posts

 

suri.isTradingDay

 

A TradingDay (function) searches if a given Date is

a Full Trading Day(1), Half-Day/Early Close (0.5) or A Holiday (0) from

1998 to 2010's list of Holidays.

 

This Holiday list is compiled from NYSE Holiday lists from 1998 to 2010.

 

Usage

 

day = suri.isTradingDay(CheckDate);

 

returns

0 = Holiday/Saturday or Sunday

1 = Full Trading Day

0.5 = Half-Day/Early Close

-1 = Not in the DateList or Error...

 

Example:

day = suri.isTradingDay(1080215); // Returns 1

day = suri.isTradingDay(1081224); // Returns 0.5

day = suri.isTradingDay(1081225); // Returns 0

day = suri.isTradingDay(1080218); // Returns 0

day = suri.isTradingDay(1100114); // Returns -1

 

Notes:

1. Please make sure the Holiday/Early Close Datelist is accurate for the

Instruments/Exchange data you trade.

 

2. The date search code has index-offsets for faster search in

HOLIDAYS array. If you add/remove any dates, pl. change the

index offsets also.

 

 

regards,

Suri ("deMicron")

 

 

This is the same function I posted on the TradeStation Forums on Feb. 15, 2008

and updated the DateArrays in 2009.

 

https://www.tradestation.com/Discussions/Topic.aspx?Result=1&Topic_ID=73885

 

SURIISTRADINGDAY.ELD

Share this post


Link to post
Share on other sites

 

Holiday List for suri.IsTradingDay

 

// 1998

HOLIDAYS[ 1,1] = 980101; HOLIDAYS[ 1,2] = 0;

HOLIDAYS[ 2,1] = 980119; HOLIDAYS[ 2,2] = 0;

HOLIDAYS[ 3,1] = 980216; HOLIDAYS[ 3,2] = 0;

HOLIDAYS[ 4,1] = 980410; HOLIDAYS[ 4,2] = 0;

HOLIDAYS[ 5,1] = 980525; HOLIDAYS[ 5,2] = 0;

HOLIDAYS[ 6,1] = 980703; HOLIDAYS[ 6,2] = 0;

HOLIDAYS[ 7,1] = 980907; HOLIDAYS[ 7,2] = 0;

HOLIDAYS[ 8,1] = 981126; HOLIDAYS[ 8,2] = 0;

HOLIDAYS[ 9,1] = 981127; HOLIDAYS[ 9,2] = 0.5;

HOLIDAYS[ 10,1] = 981224; HOLIDAYS[ 10,2] = 0.5;

HOLIDAYS[ 11,1] = 981225; HOLIDAYS[ 11,2] = 0;

 

// 1999

HOLIDAYS[ 12,1] = 990101; HOLIDAYS[ 12,2] = 0;

HOLIDAYS[ 13,1] = 990118; HOLIDAYS[ 13,2] = 0;

HOLIDAYS[ 14,1] = 990215; HOLIDAYS[ 14,2] = 0;

HOLIDAYS[ 15,1] = 990402; HOLIDAYS[ 15,2] = 0;

HOLIDAYS[ 16,1] = 990531; HOLIDAYS[ 16,2] = 0;

HOLIDAYS[ 17,1] = 990705; HOLIDAYS[ 17,2] = 0;

HOLIDAYS[ 18,1] = 990906; HOLIDAYS[ 18,2] = 0;

HOLIDAYS[ 19,1] = 991125; HOLIDAYS[ 19,2] = 0;

HOLIDAYS[ 20,1] = 991126; HOLIDAYS[ 20,2] = 0.5;

HOLIDAYS[ 21,1] = 991224; HOLIDAYS[ 21,2] = 0;

HOLIDAYS[ 22,1] = 991231; HOLIDAYS[ 22,2] = 0.5;

 

// 2000

HOLIDAYS[ 23,1] = 1000117; HOLIDAYS[ 23,2] = 0;

HOLIDAYS[ 24,1] = 1000221; HOLIDAYS[ 24,2] = 0;

HOLIDAYS[ 25,1] = 1000421; HOLIDAYS[ 25,2] = 0;

HOLIDAYS[ 26,1] = 1000529; HOLIDAYS[ 26,2] = 0;

HOLIDAYS[ 27,1] = 1000703; HOLIDAYS[ 27,2] = 0.5;

HOLIDAYS[ 28,1] = 1000704; HOLIDAYS[ 28,2] = 0;

HOLIDAYS[ 29,1] = 1000904; HOLIDAYS[ 29,2] = 0;

HOLIDAYS[ 30,1] = 1001123; HOLIDAYS[ 30,2] = 0;

HOLIDAYS[ 31,1] = 1001124; HOLIDAYS[ 31,2] = 0.5;

HOLIDAYS[ 32,1] = 1001225; HOLIDAYS[ 32,2] = 0;

 

//2001

HOLIDAYS[ 33,1] = 1010101; HOLIDAYS[ 33,2] = 0;

HOLIDAYS[ 34,1] = 1010115; HOLIDAYS[ 34,2] = 0;

HOLIDAYS[ 35,1] = 1010219; HOLIDAYS[ 35,2] = 0;

HOLIDAYS[ 36,1] = 1010413; HOLIDAYS[ 36,2] = 0;

HOLIDAYS[ 37,1] = 1010528; HOLIDAYS[ 37,2] = 0;

HOLIDAYS[ 38,1] = 1010703; HOLIDAYS[ 38,2] = 0.5;

HOLIDAYS[ 39,1] = 1010704; HOLIDAYS[ 39,2] = 0;

HOLIDAYS[ 40,1] = 1010903; HOLIDAYS[ 40,2] = 0;

HOLIDAYS[ 41,1] = 1010911; HOLIDAYS[ 41,2] = 0; //Sept. 11

HOLIDAYS[ 42,1] = 1010912; HOLIDAYS[ 42,2] = 0;

HOLIDAYS[ 43,1] = 1010913; HOLIDAYS[ 43,2] = 0;

HOLIDAYS[ 44,1] = 1010914; HOLIDAYS[ 44,2] = 0;

HOLIDAYS[ 45,1] = 1011122; HOLIDAYS[ 45,2] = 0;

HOLIDAYS[ 46,1] = 1011123; HOLIDAYS[ 46,2] = 0.5;

HOLIDAYS[ 47,1] = 1011224; HOLIDAYS[ 47,2] = 0.5;

HOLIDAYS[ 48,1] = 1011225; HOLIDAYS[ 48,2] = 0;

 

//2002

HOLIDAYS[ 49,1] = 1020101; HOLIDAYS[ 49,2] = 0;

HOLIDAYS[ 50,1] = 1020121; HOLIDAYS[ 50,2] = 0;

HOLIDAYS[ 51,1] = 1020218; HOLIDAYS[ 51,2] = 0;

HOLIDAYS[ 52,1] = 1020329; HOLIDAYS[ 52,2] = 0;

HOLIDAYS[ 53,1] = 1020527; HOLIDAYS[ 53,2] = 0;

HOLIDAYS[ 54,1] = 1020704; HOLIDAYS[ 54,2] = 0;

HOLIDAYS[ 55,1] = 1020705; HOLIDAYS[ 55,2] = 0.5;

HOLIDAYS[ 56,1] = 1020902; HOLIDAYS[ 56,2] = 0;

HOLIDAYS[ 57,1] = 1021128; HOLIDAYS[ 57,2] = 0;

HOLIDAYS[ 58,1] = 1021129; HOLIDAYS[ 58,2] = 0.5;

HOLIDAYS[ 59,1] = 1021224; HOLIDAYS[ 59,2] = 0.5;

HOLIDAYS[ 60,1] = 1021225; HOLIDAYS[ 60,2] = 0;

 

//2003

HOLIDAYS[ 61,1] = 1030101; HOLIDAYS[ 61,2] = 0;

HOLIDAYS[ 62,1] = 1030120; HOLIDAYS[ 62,2] = 0;

HOLIDAYS[ 63,1] = 1030217; HOLIDAYS[ 63,2] = 0;

HOLIDAYS[ 64,1] = 1030418; HOLIDAYS[ 64,2] = 0;

HOLIDAYS[ 65,1] = 1030526; HOLIDAYS[ 65,2] = 0;

HOLIDAYS[ 66,1] = 1030703; HOLIDAYS[ 66,2] = 0.5;

HOLIDAYS[ 67,1] = 1030704; HOLIDAYS[ 67,2] = 0;

HOLIDAYS[ 68,1] = 1030901; HOLIDAYS[ 68,2] = 0;

HOLIDAYS[ 69,1] = 1031127; HOLIDAYS[ 69,2] = 0;

HOLIDAYS[ 70,1] = 1031128; HOLIDAYS[ 70,2] = 0.5;

HOLIDAYS[ 71,1] = 1031224; HOLIDAYS[ 71,2] = 0.5;

HOLIDAYS[ 72,1] = 1031225; HOLIDAYS[ 72,2] = 0;

HOLIDAYS[ 73,1] = 1031226; HOLIDAYS[ 73,2] = 0.5;

 

//2004

HOLIDAYS[ 74,1] = 1040101; HOLIDAYS[ 74,2] = 0;

HOLIDAYS[ 75,1] = 1040119; HOLIDAYS[ 75,2] = 0;

HOLIDAYS[ 76,1] = 1040216; HOLIDAYS[ 76,2] = 0;

HOLIDAYS[ 77,1] = 1040409; HOLIDAYS[ 77,2] = 0;

HOLIDAYS[ 78,1] = 1040531; HOLIDAYS[ 78,2] = 0;

HOLIDAYS[ 79,1] = 1040611; HOLIDAYS[ 79,2] = 0; // Ronald Reagan's

HOLIDAYS[ 80,1] = 1040705; HOLIDAYS[ 80,2] = 0;

HOLIDAYS[ 81,1] = 1040906; HOLIDAYS[ 81,2] = 0;

HOLIDAYS[ 82,1] = 1041125; HOLIDAYS[ 82,2] = 0;

HOLIDAYS[ 83,1] = 1041126; HOLIDAYS[ 83,2] = 0.5;

HOLIDAYS[ 84,1] = 1041224; HOLIDAYS[ 84,2] = 0;

 

//2005

HOLIDAYS[ 85,1] = 1050117; HOLIDAYS[ 85,2] = 0;

HOLIDAYS[ 86,1] = 1050221; HOLIDAYS[ 86,2] = 0;

HOLIDAYS[ 87,1] = 1050325; HOLIDAYS[ 87,2] = 0;

HOLIDAYS[ 88,1] = 1050530; HOLIDAYS[ 88,2] = 0;

HOLIDAYS[ 89,1] = 1050704; HOLIDAYS[ 89,2] = 0;

HOLIDAYS[ 90,1] = 1050905; HOLIDAYS[ 90,2] = 0;

HOLIDAYS[ 91,1] = 1051124; HOLIDAYS[ 91,2] = 0;

HOLIDAYS[ 92,1] = 1051125; HOLIDAYS[ 92,2] = 0.5;

HOLIDAYS[ 93,1] = 1051226; HOLIDAYS[ 93,2] = 0;

 

//2006

HOLIDAYS[ 94,1] = 1060102; HOLIDAYS[ 94,2] = 0;

HOLIDAYS[ 95,1] = 1060116; HOLIDAYS[ 95,2] = 0;

HOLIDAYS[ 96,1] = 1060220; HOLIDAYS[ 96,2] = 0;

HOLIDAYS[ 97,1] = 1060414; HOLIDAYS[ 97,2] = 0;

HOLIDAYS[ 98,1] = 1060529; HOLIDAYS[ 98,2] = 0;

HOLIDAYS[ 99,1] = 1060703; HOLIDAYS[ 99,2] = 0.5;

HOLIDAYS[ 100,1] = 1060704; HOLIDAYS[ 100,2] = 0;

HOLIDAYS[ 101,1] = 1060904; HOLIDAYS[ 101,2] = 0;

HOLIDAYS[ 102,1] = 1061123; HOLIDAYS[ 102,2] = 0;

HOLIDAYS[ 103,1] = 1061124; HOLIDAYS[ 103,2] = 0.5;

HOLIDAYS[ 104,1] = 1061225; HOLIDAYS[ 104,2] = 0;

 

//2007

HOLIDAYS[ 105,1] = 1070101; HOLIDAYS[ 105,2] = 0;

HOLIDAYS[ 106,1] = 1070102; HOLIDAYS[ 106,2] = 0; // Gerald Ford's

HOLIDAYS[ 107,1] = 1070105; HOLIDAYS[ 107,2] = 0;

HOLIDAYS[ 108,1] = 1070115; HOLIDAYS[ 108,2] = 0;

HOLIDAYS[ 109,1] = 1070219; HOLIDAYS[ 109,2] = 0;

HOLIDAYS[ 110,1] = 1070406; HOLIDAYS[ 110,2] = 0;

HOLIDAYS[ 111,1] = 1070528; HOLIDAYS[ 111,2] = 0;

HOLIDAYS[ 112,1] = 1070703; HOLIDAYS[ 112,2] = 0.5;

HOLIDAYS[ 113,1] = 1070704; HOLIDAYS[ 113,2] = 0;

HOLIDAYS[ 114,1] = 1070903; HOLIDAYS[ 114,2] = 0;

HOLIDAYS[ 115,1] = 1071122; HOLIDAYS[ 115,2] = 0;

HOLIDAYS[ 116,1] = 1071123; HOLIDAYS[ 116,2] = 0.5;

HOLIDAYS[ 117,1] = 1071224; HOLIDAYS[ 117,2] = 0.5;

HOLIDAYS[ 118,1] = 1071225; HOLIDAYS[ 118,2] = 0;

 

// Manual Entries for 2008, 2009, 2010 Holidays from NYSE Calendar... Suri

 

// 2008

HOLIDAYS[ 119,1] = 1080101; HOLIDAYS[ 119,2] = 0;

HOLIDAYS[ 120,1] = 1080121; HOLIDAYS[ 120,2] = 0;

HOLIDAYS[ 121,1] = 1080218; HOLIDAYS[ 121,2] = 0;

HOLIDAYS[ 122,1] = 1080321; HOLIDAYS[ 122,2] = 0;

HOLIDAYS[ 123,1] = 1080526; HOLIDAYS[ 123,2] = 0;

HOLIDAYS[ 124,1] = 1080703; HOLIDAYS[ 124,2] = 0.5;

HOLIDAYS[ 125,1] = 1080704; HOLIDAYS[ 125,2] = 0;

HOLIDAYS[ 126,1] = 1080901; HOLIDAYS[ 126,2] = 0;

HOLIDAYS[ 127,1] = 1081127; HOLIDAYS[ 127,2] = 0;

HOLIDAYS[ 128,1] = 1081127; HOLIDAYS[ 128,2] = 0;

HOLIDAYS[ 129,1] = 1081128; HOLIDAYS[ 129,2] = 0.5;

HOLIDAYS[ 130,1] = 1081224; HOLIDAYS[ 130,2] = 0.5;

HOLIDAYS[ 131,1] = 1081225; HOLIDAYS[ 131,2] = 0;

 

// 2009

HOLIDAYS[ 132,1] = 1090101; HOLIDAYS[ 132,2] = 0;

HOLIDAYS[ 133,1] = 1090119; HOLIDAYS[ 133,2] = 0;

HOLIDAYS[ 134,1] = 1090216; HOLIDAYS[ 134,2] = 0;

HOLIDAYS[ 135,1] = 1090410; HOLIDAYS[ 135,2] = 0;

HOLIDAYS[ 136,1] = 1090525; HOLIDAYS[ 136,2] = 0;

HOLIDAYS[ 137,1] = 1090703; HOLIDAYS[ 137,2] = 0;

HOLIDAYS[ 138,1] = 1090907; HOLIDAYS[ 138,2] = 0;

HOLIDAYS[ 139,1] = 1091126; HOLIDAYS[ 139,2] = 0;

HOLIDAYS[ 140,1] = 1091127; HOLIDAYS[ 140,2] = 0.5;

HOLIDAYS[ 141,1] = 1091224; HOLIDAYS[ 141,2] = 0.5;

HOLIDAYS[ 142,1] = 1091225; HOLIDAYS[ 142,2] = 0;

 

// 2010

HOLIDAYS[ 143,1] = 1100101; HOLIDAYS[ 143,2] = 0;

HOLIDAYS[ 144,1] = 1100118; HOLIDAYS[ 144,2] = 0;

HOLIDAYS[ 145,1] = 1100215; HOLIDAYS[ 145,2] = 0;

HOLIDAYS[ 146,1] = 1100402; HOLIDAYS[ 146,2] = 0;

HOLIDAYS[ 147,1] = 1100531; HOLIDAYS[ 147,2] = 0;

HOLIDAYS[ 148,1] = 1100705; HOLIDAYS[ 148,2] = 0;

HOLIDAYS[ 149,1] = 1100906; HOLIDAYS[ 149,2] = 0;

HOLIDAYS[ 150,1] = 1101125; HOLIDAYS[ 150,2] = 0;

HOLIDAYS[ 151,1] = 1101126; HOLIDAYS[ 151,2] = 0.5;

HOLIDAYS[ 152,1] = 1101224; HOLIDAYS[ 152,2] = 0;

 

Share this post


Link to post
Share on other sites

Suri

 

I've crated a function suri.isTradingDay in MultiCharts

 

I have this message

 

------ Build started: ------

Study: "suri.IsTradingDay" (Function)

Please wait ....

------ Compiled with error(s): ------

assignment is allowed only for variables or array elements

errLine 2, errColumn 0, errLineEnd 2, errColumnEnd 0

 

 

 

{
suri.isTradingDay

written by 
deMicron ("Suri Duddella")
Jan. 04, 2008

[url=http://www.suriNotes.com]suriNotes.com, suriNotes, Stock Research, Futures Trading, Emini Trading, Tradestation, Indicators[/url]

Returns: 0 for Holiday, 1 = Trading Day, 0.5 = EarlyClose/HalfDay, -1: Not in the DateList

Example:
Day = suri.IsTradingDay(1080219);
Day = suri.IsTradingDay(1051225);


1998 to 2007 Data Compiled from $INDU 5m Charts on TS.. Suri
2008, 2009 Data Manually compiled from NYSE Calendar .. Suri

}

//Input: checkDate(numericsimple), d1(numericSimple), d2(numericsimple);

Input: checkDate(numericsimple);

// Input: checkDate(numericsimple);

Arrays: HOLIDAYS[200,2](0);
Var: count(0), Found (0), NumHolidays(142), hreturn(0), iStart(0), iEnd(0);

// 0 = Holiday, 1 = TradingDay, 0.5= HalfDay/EarlyClose ... 

// 1998
HOLIDAYS[   1,1] =  980101; HOLIDAYS[   1,2] = 0;
HOLIDAYS[   2,1] =  980119; HOLIDAYS[   2,2] = 0;
HOLIDAYS[   3,1] =  980216; HOLIDAYS[   3,2] = 0;
HOLIDAYS[   4,1] =  980410; HOLIDAYS[   4,2] = 0;
HOLIDAYS[   5,1] =  980525; HOLIDAYS[   5,2] = 0;
HOLIDAYS[   6,1] =  980703; HOLIDAYS[   6,2] = 0;
HOLIDAYS[   7,1] =  980907; HOLIDAYS[   7,2] = 0;
HOLIDAYS[   8,1] =  981126; HOLIDAYS[   8,2] = 0;
HOLIDAYS[   9,1] =  981127; HOLIDAYS[   9,2] = 0.5;
HOLIDAYS[  10,1] =  981224; HOLIDAYS[  10,2] = 0.5;
HOLIDAYS[  11,1] =  981225; HOLIDAYS[  11,2] = 0;

// 1999
HOLIDAYS[  12,1] =  990101; HOLIDAYS[  12,2] = 0;
HOLIDAYS[  13,1] =  990118; HOLIDAYS[  13,2] = 0;
HOLIDAYS[  14,1] =  990215; HOLIDAYS[  14,2] = 0;
HOLIDAYS[  15,1] =  990402; HOLIDAYS[  15,2] = 0;
HOLIDAYS[  16,1] =  990531; HOLIDAYS[  16,2] = 0;
HOLIDAYS[  17,1] =  990705; HOLIDAYS[  17,2] = 0;
HOLIDAYS[  18,1] =  990906; HOLIDAYS[  18,2] = 0;
HOLIDAYS[  19,1] =  991125; HOLIDAYS[  19,2] = 0;
HOLIDAYS[  20,1] =  991126; HOLIDAYS[  20,2] = 0.5;
HOLIDAYS[  21,1] =  991224; HOLIDAYS[  21,2] = 0;
HOLIDAYS[  22,1] =  991231; HOLIDAYS[  22,2] = 0.5;

// 2000
HOLIDAYS[  23,1] = 1000117; HOLIDAYS[  23,2] = 0;
HOLIDAYS[  24,1] = 1000221; HOLIDAYS[  24,2] = 0;
HOLIDAYS[  25,1] = 1000421; HOLIDAYS[  25,2] = 0;
HOLIDAYS[  26,1] = 1000529; HOLIDAYS[  26,2] = 0;
HOLIDAYS[  27,1] = 1000703; HOLIDAYS[  27,2] = 0.5;
HOLIDAYS[  28,1] = 1000704; HOLIDAYS[  28,2] = 0;
HOLIDAYS[  29,1] = 1000904; HOLIDAYS[  29,2] = 0;
HOLIDAYS[  30,1] = 1001123; HOLIDAYS[  30,2] = 0;
HOLIDAYS[  31,1] = 1001124; HOLIDAYS[  31,2] = 0.5;
HOLIDAYS[  32,1] = 1001225; HOLIDAYS[  32,2] = 0;

//2001
HOLIDAYS[  33,1] = 1010101; HOLIDAYS[  33,2] = 0;
HOLIDAYS[  34,1] = 1010115; HOLIDAYS[  34,2] = 0;
HOLIDAYS[  35,1] = 1010219; HOLIDAYS[  35,2] = 0;
HOLIDAYS[  36,1] = 1010413; HOLIDAYS[  36,2] = 0;
HOLIDAYS[  37,1] = 1010528; HOLIDAYS[  37,2] = 0;
HOLIDAYS[  38,1] = 1010703; HOLIDAYS[  38,2] = 0.5;
HOLIDAYS[  39,1] = 1010704; HOLIDAYS[  39,2] = 0;
HOLIDAYS[  40,1] = 1010903; HOLIDAYS[  40,2] = 0;
HOLIDAYS[  41,1] = 1010911; HOLIDAYS[  41,2] = 0;  //Sept. 11
HOLIDAYS[  42,1] = 1010912; HOLIDAYS[  42,2] = 0;
HOLIDAYS[  43,1] = 1010913; HOLIDAYS[  43,2] = 0;
HOLIDAYS[  44,1] = 1010914; HOLIDAYS[  44,2] = 0;
HOLIDAYS[  45,1] = 1011122; HOLIDAYS[  45,2] = 0;
HOLIDAYS[  46,1] = 1011123; HOLIDAYS[  46,2] = 0.5;
HOLIDAYS[  47,1] = 1011224; HOLIDAYS[  47,2] = 0.5;
HOLIDAYS[  48,1] = 1011225; HOLIDAYS[  48,2] = 0;

//2002
HOLIDAYS[  49,1] = 1020101; HOLIDAYS[  49,2] = 0;
HOLIDAYS[  50,1] = 1020121; HOLIDAYS[  50,2] = 0;
HOLIDAYS[  51,1] = 1020218; HOLIDAYS[  51,2] = 0;
HOLIDAYS[  52,1] = 1020329; HOLIDAYS[  52,2] = 0;
HOLIDAYS[  53,1] = 1020527; HOLIDAYS[  53,2] = 0;
HOLIDAYS[  54,1] = 1020704; HOLIDAYS[  54,2] = 0;
HOLIDAYS[  55,1] = 1020705; HOLIDAYS[  55,2] = 0.5;
HOLIDAYS[  56,1] = 1020902; HOLIDAYS[  56,2] = 0;
HOLIDAYS[  57,1] = 1021128; HOLIDAYS[  57,2] = 0;
HOLIDAYS[  58,1] = 1021129; HOLIDAYS[  58,2] = 0.5;
HOLIDAYS[  59,1] = 1021224; HOLIDAYS[  59,2] = 0.5;
HOLIDAYS[  60,1] = 1021225; HOLIDAYS[  60,2] = 0;

//2003
HOLIDAYS[  61,1] = 1030101; HOLIDAYS[  61,2] = 0;
HOLIDAYS[  62,1] = 1030120; HOLIDAYS[  62,2] = 0;
HOLIDAYS[  63,1] = 1030217; HOLIDAYS[  63,2] = 0;
HOLIDAYS[  64,1] = 1030418; HOLIDAYS[  64,2] = 0;
HOLIDAYS[  65,1] = 1030526; HOLIDAYS[  65,2] = 0;
HOLIDAYS[  66,1] = 1030703; HOLIDAYS[  66,2] = 0.5;
HOLIDAYS[  67,1] = 1030704; HOLIDAYS[  67,2] = 0;
HOLIDAYS[  68,1] = 1030901; HOLIDAYS[  68,2] = 0;
HOLIDAYS[  69,1] = 1031127; HOLIDAYS[  69,2] = 0;
HOLIDAYS[  70,1] = 1031128; HOLIDAYS[  70,2] = 0.5;
HOLIDAYS[  71,1] = 1031224; HOLIDAYS[  71,2] = 0.5;
HOLIDAYS[  72,1] = 1031225; HOLIDAYS[  72,2] = 0;
HOLIDAYS[  73,1] = 1031226; HOLIDAYS[  73,2] = 0.5;

//2004
HOLIDAYS[  74,1] = 1040101; HOLIDAYS[  74,2] = 0;
HOLIDAYS[  75,1] = 1040119; HOLIDAYS[  75,2] = 0;
HOLIDAYS[  76,1] = 1040216; HOLIDAYS[  76,2] = 0;
HOLIDAYS[  77,1] = 1040409; HOLIDAYS[  77,2] = 0;
HOLIDAYS[  78,1] = 1040531; HOLIDAYS[  78,2] = 0;
HOLIDAYS[  79,1] = 1040611; HOLIDAYS[  79,2] = 0; // Ronald Reagan's
HOLIDAYS[  80,1] = 1040705; HOLIDAYS[  80,2] = 0;
HOLIDAYS[  81,1] = 1040906; HOLIDAYS[  81,2] = 0;
HOLIDAYS[  82,1] = 1041125; HOLIDAYS[  82,2] = 0;
HOLIDAYS[  83,1] = 1041126; HOLIDAYS[  83,2] = 0.5;
HOLIDAYS[  84,1] = 1041224; HOLIDAYS[  84,2] = 0;

//2005
HOLIDAYS[  85,1] = 1050117; HOLIDAYS[  85,2] = 0;
HOLIDAYS[  86,1] = 1050221; HOLIDAYS[  86,2] = 0;
HOLIDAYS[  87,1] = 1050325; HOLIDAYS[  87,2] = 0;
HOLIDAYS[  88,1] = 1050530; HOLIDAYS[  88,2] = 0;
HOLIDAYS[  89,1] = 1050704; HOLIDAYS[  89,2] = 0;
HOLIDAYS[  90,1] = 1050905; HOLIDAYS[  90,2] = 0;
HOLIDAYS[  91,1] = 1051124; HOLIDAYS[  91,2] = 0;
HOLIDAYS[  92,1] = 1051125; HOLIDAYS[  92,2] = 0.5;
HOLIDAYS[  93,1] = 1051226; HOLIDAYS[  93,2] = 0;

//2006
HOLIDAYS[  94,1] = 1060102; HOLIDAYS[  94,2] = 0;
HOLIDAYS[  95,1] = 1060116; HOLIDAYS[  95,2] = 0;
HOLIDAYS[  96,1] = 1060220; HOLIDAYS[  96,2] = 0;
HOLIDAYS[  97,1] = 1060414; HOLIDAYS[  97,2] = 0;
HOLIDAYS[  98,1] = 1060529; HOLIDAYS[  98,2] = 0;
HOLIDAYS[  99,1] = 1060703; HOLIDAYS[  99,2] = 0.5;
HOLIDAYS[ 100,1] = 1060704; HOLIDAYS[ 100,2] = 0;
HOLIDAYS[ 101,1] = 1060904; HOLIDAYS[ 101,2] = 0;
HOLIDAYS[ 102,1] = 1061123; HOLIDAYS[ 102,2] = 0;
HOLIDAYS[ 103,1] = 1061124; HOLIDAYS[ 103,2] = 0.5;
HOLIDAYS[ 104,1] = 1061225; HOLIDAYS[ 104,2] = 0;

//2007
HOLIDAYS[ 105,1] = 1070101; HOLIDAYS[ 105,2] = 0;
HOLIDAYS[ 106,1] = 1070102; HOLIDAYS[ 106,2] = 0; // Gerald Ford's
HOLIDAYS[ 107,1] = 1070105; HOLIDAYS[ 107,2] = 0;
HOLIDAYS[ 108,1] = 1070115; HOLIDAYS[ 108,2] = 0;
HOLIDAYS[ 109,1] = 1070219; HOLIDAYS[ 109,2] = 0;
HOLIDAYS[ 110,1] = 1070406; HOLIDAYS[ 110,2] = 0;
HOLIDAYS[ 111,1] = 1070528; HOLIDAYS[ 111,2] = 0;
HOLIDAYS[ 112,1] = 1070703; HOLIDAYS[ 112,2] = 0.5;
HOLIDAYS[ 113,1] = 1070704; HOLIDAYS[ 113,2] = 0;
HOLIDAYS[ 114,1] = 1070903; HOLIDAYS[ 114,2] = 0;
HOLIDAYS[ 115,1] = 1071122; HOLIDAYS[ 115,2] = 0;
HOLIDAYS[ 116,1] = 1071123; HOLIDAYS[ 116,2] = 0.5;
HOLIDAYS[ 117,1] = 1071224; HOLIDAYS[ 117,2] = 0.5;
HOLIDAYS[ 118,1] = 1071225; HOLIDAYS[ 118,2] = 0;

// Manual Entries for 2008, 2009 Holidays from NYSE Calendar... Suri

// 2008
HOLIDAYS[ 119,1] = 1080101; HOLIDAYS[ 119,2] = 0;
HOLIDAYS[ 120,1] = 1080121; HOLIDAYS[ 120,2] = 0;
HOLIDAYS[ 121,1] = 1080218; HOLIDAYS[ 121,2] = 0;
HOLIDAYS[ 122,1] = 1080321; HOLIDAYS[ 122,2] = 0;
HOLIDAYS[ 123,1] = 1080526; HOLIDAYS[ 123,2] = 0;
HOLIDAYS[ 124,1] = 1080703; HOLIDAYS[ 124,2] = 0.5;
HOLIDAYS[ 125,1] = 1080704; HOLIDAYS[ 125,2] = 0;
HOLIDAYS[ 126,1] = 1080901; HOLIDAYS[ 126,2] = 0;
HOLIDAYS[ 127,1] = 1081127; HOLIDAYS[ 127,2] = 0;
HOLIDAYS[ 128,1] = 1081127; HOLIDAYS[ 128,2] = 0;
HOLIDAYS[ 129,1] = 1081128; HOLIDAYS[ 129,2] = 0.5;
HOLIDAYS[ 130,1] = 1081224; HOLIDAYS[ 130,2] = 0.5;
HOLIDAYS[ 131,1] = 1081225; HOLIDAYS[ 131,2] = 0;

// 2009
HOLIDAYS[ 132,1] = 1090101; HOLIDAYS[ 132,2] = 0;
HOLIDAYS[ 133,1] = 1090119; HOLIDAYS[ 133,2] = 0;
HOLIDAYS[ 134,1] = 1090216; HOLIDAYS[ 134,2] = 0;
HOLIDAYS[ 135,1] = 1090410; HOLIDAYS[ 135,2] = 0;
HOLIDAYS[ 136,1] = 1090525; HOLIDAYS[ 136,2] = 0;
HOLIDAYS[ 137,1] = 1090703; HOLIDAYS[ 137,2] = 0;
HOLIDAYS[ 138,1] = 1090907; HOLIDAYS[ 138,2] = 0;
HOLIDAYS[ 139,1] = 1091126; HOLIDAYS[ 139,2] = 0;
HOLIDAYS[ 140,1] = 1091127; HOLIDAYS[ 140,2] = 0.5;
HOLIDAYS[ 141,1] = 1091224; HOLIDAYS[ 141,2] = 0.5;
HOLIDAYS[ 142,1] = 1091225; HOLIDAYS[ 142,2] = 0;



// 2010
HOLIDAYS[ 143,1] = 1100101; HOLIDAYS[ 143,2] = 0;
HOLIDAYS[ 144,1] = 1100118; HOLIDAYS[ 144,2] = 0;
HOLIDAYS[ 145,1] = 1100215; HOLIDAYS[ 145,2] = 0;
HOLIDAYS[ 146,1] = 1100402; HOLIDAYS[ 146,2] = 0;
HOLIDAYS[ 147,1] = 1100531; HOLIDAYS[ 147,2] = 0;
HOLIDAYS[ 148,1] = 1100705; HOLIDAYS[ 148,2] = 0;
HOLIDAYS[ 149,1] = 1100906; HOLIDAYS[ 149,2] = 0;
HOLIDAYS[ 150,1] = 1101125; HOLIDAYS[ 150,2] = 0;
HOLIDAYS[ 151,1] = 1101126; HOLIDAYS[ 151,2] = 0.5;
HOLIDAYS[ 152,1] = 1101224; HOLIDAYS[ 152,2] = 0;





if checkDate >= 980101 and checkDate <= 981231 then
begin
	iStart = 1;
iEnd = 11;
end
else if checkDate >= 990101 and checkDate <= 991231 then
begin
	iStart = 12;
iEnd = 22;
end  else if checkDate >= 1000101 and checkDate <= 1001231 then
begin
	iStart = 23;
iEnd = 32;
end  else if checkDate >= 1010101 and checkDate <= 1021231 then
begin
	iStart = 33;
iEnd = 48;
end   else if checkDate >= 1020101 and checkDate <= 1031231 then
begin
	iStart = 49;
iEnd = 60;
end  else if checkDate >= 1030101 and checkDate <= 1031231 then
begin
	iStart = 61;
iEnd = 73;
end  else if checkDate >= 1040101 and checkDate <= 1041231 then
begin
	iStart = 74;
iEnd = 84;
end  else if checkDate >= 1050101 and checkDate <= 1051231 then
begin
	iStart = 85;
iEnd = 93;
end  else if checkDate >= 1060101 and checkDate <= 1061231 then
begin
	iStart = 94;
iEnd = 104;
end  else if checkDate >= 1070101 and checkDate <= 1071231 then
begin
	iStart = 105;
iEnd = 118;
end  else if checkDate >= 1080101 and checkDate <= 1081231 then
begin
	iStart = 119;
iEnd = 131;
end   else if checkDate >= 1090101 and checkDate <= 1091231 then
begin
	iStart = 132;
iEnd = 142;
end   else if checkDate >= 1100101 and checkDate <= 1101231 then
begin
	iStart = 143;
iEnd = 152;
end

else  // Out of the range of this DB...
begin
	iStart = 0;
iEnd = 0;
Found = -100;
hreturn = -1;  // Not In DB 
end;


if ((DayOfWeek(checkDate) = 0) OR (DayOfWeek(checkDate) = 6)) then  // Saturady or Sunday
begin
hreturn = 0;   // Saturday, Sunday... 
end
else if (iStart > 0 and iEnd > 0) then
begin
Found=-1;		
for count= iStart to iEnd
begin
	value10 = IntPortion(Holidays[count,1]);
	if (value10 = Intportion(checkDate)) then
	begin		
		Found =1;  
		hreturn = HOLIDAYS[count,2];
		count=10000; // Short-Circuit
	end;
end;
if (Found =-1) then  // Not a Holiday
	hreturn = 1; // Full-Trading Day
end;

suri.isTradingDay = hreturn; 




// print("TestD  = ", checkDate, " DayofWeek  = ", DayOfWeek(checkDate));			
// print("Count = ", count, "HC = ", Holidays[count,1]);				
// print("Found = ", " Count = ", Count);			
// print("hreturn = ", hreturn);
// print("Istart = ", istart, " iEnd = ", Iend);

 

// 1998 
HOLIDAYS[ 1,1] = 980101; HOLIDAYS[ 1,2] = 0; 
HOLIDAYS[ 2,1] = 980119; HOLIDAYS[ 2,2] = 0; 
HOLIDAYS[ 3,1] = 980216; HOLIDAYS[ 3,2] = 0; 
HOLIDAYS[ 4,1] = 980410; HOLIDAYS[ 4,2] = 0; 
HOLIDAYS[ 5,1] = 980525; HOLIDAYS[ 5,2] = 0; 
HOLIDAYS[ 6,1] = 980703; HOLIDAYS[ 6,2] = 0; 
HOLIDAYS[ 7,1] = 980907; HOLIDAYS[ 7,2] = 0; 
HOLIDAYS[ 8,1] = 981126; HOLIDAYS[ 8,2] = 0; 
HOLIDAYS[ 9,1] = 981127; HOLIDAYS[ 9,2] = 0.5; 
HOLIDAYS[ 10,1] = 981224; HOLIDAYS[ 10,2] = 0.5; 
HOLIDAYS[ 11,1] = 981225; HOLIDAYS[ 11,2] = 0; 

// 1999 
HOLIDAYS[ 12,1] = 990101; HOLIDAYS[ 12,2] = 0; 
HOLIDAYS[ 13,1] = 990118; HOLIDAYS[ 13,2] = 0; 
HOLIDAYS[ 14,1] = 990215; HOLIDAYS[ 14,2] = 0; 
HOLIDAYS[ 15,1] = 990402; HOLIDAYS[ 15,2] = 0; 
HOLIDAYS[ 16,1] = 990531; HOLIDAYS[ 16,2] = 0; 
HOLIDAYS[ 17,1] = 990705; HOLIDAYS[ 17,2] = 0; 
HOLIDAYS[ 18,1] = 990906; HOLIDAYS[ 18,2] = 0; 
HOLIDAYS[ 19,1] = 991125; HOLIDAYS[ 19,2] = 0; 
HOLIDAYS[ 20,1] = 991126; HOLIDAYS[ 20,2] = 0.5; 
HOLIDAYS[ 21,1] = 991224; HOLIDAYS[ 21,2] = 0; 
HOLIDAYS[ 22,1] = 991231; HOLIDAYS[ 22,2] = 0.5; 

// 2000 
HOLIDAYS[ 23,1] = 1000117; HOLIDAYS[ 23,2] = 0; 
HOLIDAYS[ 24,1] = 1000221; HOLIDAYS[ 24,2] = 0; 
HOLIDAYS[ 25,1] = 1000421; HOLIDAYS[ 25,2] = 0; 
HOLIDAYS[ 26,1] = 1000529; HOLIDAYS[ 26,2] = 0; 
HOLIDAYS[ 27,1] = 1000703; HOLIDAYS[ 27,2] = 0.5; 
HOLIDAYS[ 28,1] = 1000704; HOLIDAYS[ 28,2] = 0; 
HOLIDAYS[ 29,1] = 1000904; HOLIDAYS[ 29,2] = 0; 
HOLIDAYS[ 30,1] = 1001123; HOLIDAYS[ 30,2] = 0; 
HOLIDAYS[ 31,1] = 1001124; HOLIDAYS[ 31,2] = 0.5; 
HOLIDAYS[ 32,1] = 1001225; HOLIDAYS[ 32,2] = 0; 

//2001 
HOLIDAYS[ 33,1] = 1010101; HOLIDAYS[ 33,2] = 0; 
HOLIDAYS[ 34,1] = 1010115; HOLIDAYS[ 34,2] = 0; 
HOLIDAYS[ 35,1] = 1010219; HOLIDAYS[ 35,2] = 0; 
HOLIDAYS[ 36,1] = 1010413; HOLIDAYS[ 36,2] = 0; 
HOLIDAYS[ 37,1] = 1010528; HOLIDAYS[ 37,2] = 0; 
HOLIDAYS[ 38,1] = 1010703; HOLIDAYS[ 38,2] = 0.5; 
HOLIDAYS[ 39,1] = 1010704; HOLIDAYS[ 39,2] = 0; 
HOLIDAYS[ 40,1] = 1010903; HOLIDAYS[ 40,2] = 0; 
HOLIDAYS[ 41,1] = 1010911; HOLIDAYS[ 41,2] = 0; //Sept. 11 
HOLIDAYS[ 42,1] = 1010912; HOLIDAYS[ 42,2] = 0; 
HOLIDAYS[ 43,1] = 1010913; HOLIDAYS[ 43,2] = 0; 
HOLIDAYS[ 44,1] = 1010914; HOLIDAYS[ 44,2] = 0; 
HOLIDAYS[ 45,1] = 1011122; HOLIDAYS[ 45,2] = 0; 
HOLIDAYS[ 46,1] = 1011123; HOLIDAYS[ 46,2] = 0.5; 
HOLIDAYS[ 47,1] = 1011224; HOLIDAYS[ 47,2] = 0.5; 
HOLIDAYS[ 48,1] = 1011225; HOLIDAYS[ 48,2] = 0; 

//2002 
HOLIDAYS[ 49,1] = 1020101; HOLIDAYS[ 49,2] = 0; 
HOLIDAYS[ 50,1] = 1020121; HOLIDAYS[ 50,2] = 0; 
HOLIDAYS[ 51,1] = 1020218; HOLIDAYS[ 51,2] = 0; 
HOLIDAYS[ 52,1] = 1020329; HOLIDAYS[ 52,2] = 0; 
HOLIDAYS[ 53,1] = 1020527; HOLIDAYS[ 53,2] = 0; 
HOLIDAYS[ 54,1] = 1020704; HOLIDAYS[ 54,2] = 0; 
HOLIDAYS[ 55,1] = 1020705; HOLIDAYS[ 55,2] = 0.5; 
HOLIDAYS[ 56,1] = 1020902; HOLIDAYS[ 56,2] = 0; 
HOLIDAYS[ 57,1] = 1021128; HOLIDAYS[ 57,2] = 0; 
HOLIDAYS[ 58,1] = 1021129; HOLIDAYS[ 58,2] = 0.5; 
HOLIDAYS[ 59,1] = 1021224; HOLIDAYS[ 59,2] = 0.5; 
HOLIDAYS[ 60,1] = 1021225; HOLIDAYS[ 60,2] = 0; 

//2003 
HOLIDAYS[ 61,1] = 1030101; HOLIDAYS[ 61,2] = 0; 
HOLIDAYS[ 62,1] = 1030120; HOLIDAYS[ 62,2] = 0; 
HOLIDAYS[ 63,1] = 1030217; HOLIDAYS[ 63,2] = 0; 
HOLIDAYS[ 64,1] = 1030418; HOLIDAYS[ 64,2] = 0; 
HOLIDAYS[ 65,1] = 1030526; HOLIDAYS[ 65,2] = 0; 
HOLIDAYS[ 66,1] = 1030703; HOLIDAYS[ 66,2] = 0.5; 
HOLIDAYS[ 67,1] = 1030704; HOLIDAYS[ 67,2] = 0; 
HOLIDAYS[ 68,1] = 1030901; HOLIDAYS[ 68,2] = 0; 
HOLIDAYS[ 69,1] = 1031127; HOLIDAYS[ 69,2] = 0; 
HOLIDAYS[ 70,1] = 1031128; HOLIDAYS[ 70,2] = 0.5; 
HOLIDAYS[ 71,1] = 1031224; HOLIDAYS[ 71,2] = 0.5; 
HOLIDAYS[ 72,1] = 1031225; HOLIDAYS[ 72,2] = 0; 
HOLIDAYS[ 73,1] = 1031226; HOLIDAYS[ 73,2] = 0.5; 

//2004 
HOLIDAYS[ 74,1] = 1040101; HOLIDAYS[ 74,2] = 0; 
HOLIDAYS[ 75,1] = 1040119; HOLIDAYS[ 75,2] = 0; 
HOLIDAYS[ 76,1] = 1040216; HOLIDAYS[ 76,2] = 0; 
HOLIDAYS[ 77,1] = 1040409; HOLIDAYS[ 77,2] = 0; 
HOLIDAYS[ 78,1] = 1040531; HOLIDAYS[ 78,2] = 0; 
HOLIDAYS[ 79,1] = 1040611; HOLIDAYS[ 79,2] = 0; // Ronald Reagan's 
HOLIDAYS[ 80,1] = 1040705; HOLIDAYS[ 80,2] = 0; 
HOLIDAYS[ 81,1] = 1040906; HOLIDAYS[ 81,2] = 0; 
HOLIDAYS[ 82,1] = 1041125; HOLIDAYS[ 82,2] = 0; 
HOLIDAYS[ 83,1] = 1041126; HOLIDAYS[ 83,2] = 0.5; 
HOLIDAYS[ 84,1] = 1041224; HOLIDAYS[ 84,2] = 0; 

//2005 
HOLIDAYS[ 85,1] = 1050117; HOLIDAYS[ 85,2] = 0; 
HOLIDAYS[ 86,1] = 1050221; HOLIDAYS[ 86,2] = 0; 
HOLIDAYS[ 87,1] = 1050325; HOLIDAYS[ 87,2] = 0; 
HOLIDAYS[ 88,1] = 1050530; HOLIDAYS[ 88,2] = 0; 
HOLIDAYS[ 89,1] = 1050704; HOLIDAYS[ 89,2] = 0; 
HOLIDAYS[ 90,1] = 1050905; HOLIDAYS[ 90,2] = 0; 
HOLIDAYS[ 91,1] = 1051124; HOLIDAYS[ 91,2] = 0; 
HOLIDAYS[ 92,1] = 1051125; HOLIDAYS[ 92,2] = 0.5; 
HOLIDAYS[ 93,1] = 1051226; HOLIDAYS[ 93,2] = 0; 

//2006 
HOLIDAYS[ 94,1] = 1060102; HOLIDAYS[ 94,2] = 0; 
HOLIDAYS[ 95,1] = 1060116; HOLIDAYS[ 95,2] = 0; 
HOLIDAYS[ 96,1] = 1060220; HOLIDAYS[ 96,2] = 0; 
HOLIDAYS[ 97,1] = 1060414; HOLIDAYS[ 97,2] = 0; 
HOLIDAYS[ 98,1] = 1060529; HOLIDAYS[ 98,2] = 0; 
HOLIDAYS[ 99,1] = 1060703; HOLIDAYS[ 99,2] = 0.5; 
HOLIDAYS[ 100,1] = 1060704; HOLIDAYS[ 100,2] = 0; 
HOLIDAYS[ 101,1] = 1060904; HOLIDAYS[ 101,2] = 0; 
HOLIDAYS[ 102,1] = 1061123; HOLIDAYS[ 102,2] = 0; 
HOLIDAYS[ 103,1] = 1061124; HOLIDAYS[ 103,2] = 0.5; 
HOLIDAYS[ 104,1] = 1061225; HOLIDAYS[ 104,2] = 0; 

//2007 
HOLIDAYS[ 105,1] = 1070101; HOLIDAYS[ 105,2] = 0; 
HOLIDAYS[ 106,1] = 1070102; HOLIDAYS[ 106,2] = 0; // Gerald Ford's 
HOLIDAYS[ 107,1] = 1070105; HOLIDAYS[ 107,2] = 0; 
HOLIDAYS[ 108,1] = 1070115; HOLIDAYS[ 108,2] = 0; 
HOLIDAYS[ 109,1] = 1070219; HOLIDAYS[ 109,2] = 0; 
HOLIDAYS[ 110,1] = 1070406; HOLIDAYS[ 110,2] = 0; 
HOLIDAYS[ 111,1] = 1070528; HOLIDAYS[ 111,2] = 0; 
HOLIDAYS[ 112,1] = 1070703; HOLIDAYS[ 112,2] = 0.5; 
HOLIDAYS[ 113,1] = 1070704; HOLIDAYS[ 113,2] = 0; 
HOLIDAYS[ 114,1] = 1070903; HOLIDAYS[ 114,2] = 0; 
HOLIDAYS[ 115,1] = 1071122; HOLIDAYS[ 115,2] = 0; 
HOLIDAYS[ 116,1] = 1071123; HOLIDAYS[ 116,2] = 0.5; 
HOLIDAYS[ 117,1] = 1071224; HOLIDAYS[ 117,2] = 0.5; 
HOLIDAYS[ 118,1] = 1071225; HOLIDAYS[ 118,2] = 0; 

// Manual Entries for 2008, 2009, 2010 Holidays from NYSE Calendar... Suri 

// 2008 
HOLIDAYS[ 119,1] = 1080101; HOLIDAYS[ 119,2] = 0; 
HOLIDAYS[ 120,1] = 1080121; HOLIDAYS[ 120,2] = 0; 
HOLIDAYS[ 121,1] = 1080218; HOLIDAYS[ 121,2] = 0; 
HOLIDAYS[ 122,1] = 1080321; HOLIDAYS[ 122,2] = 0; 
HOLIDAYS[ 123,1] = 1080526; HOLIDAYS[ 123,2] = 0; 
HOLIDAYS[ 124,1] = 1080703; HOLIDAYS[ 124,2] = 0.5; 
HOLIDAYS[ 125,1] = 1080704; HOLIDAYS[ 125,2] = 0; 
HOLIDAYS[ 126,1] = 1080901; HOLIDAYS[ 126,2] = 0; 
HOLIDAYS[ 127,1] = 1081127; HOLIDAYS[ 127,2] = 0; 
HOLIDAYS[ 128,1] = 1081127; HOLIDAYS[ 128,2] = 0; 
HOLIDAYS[ 129,1] = 1081128; HOLIDAYS[ 129,2] = 0.5; 
HOLIDAYS[ 130,1] = 1081224; HOLIDAYS[ 130,2] = 0.5; 
HOLIDAYS[ 131,1] = 1081225; HOLIDAYS[ 131,2] = 0; 

// 2009 
HOLIDAYS[ 132,1] = 1090101; HOLIDAYS[ 132,2] = 0; 
HOLIDAYS[ 133,1] = 1090119; HOLIDAYS[ 133,2] = 0; 
HOLIDAYS[ 134,1] = 1090216; HOLIDAYS[ 134,2] = 0; 
HOLIDAYS[ 135,1] = 1090410; HOLIDAYS[ 135,2] = 0; 
HOLIDAYS[ 136,1] = 1090525; HOLIDAYS[ 136,2] = 0; 
HOLIDAYS[ 137,1] = 1090703; HOLIDAYS[ 137,2] = 0; 
HOLIDAYS[ 138,1] = 1090907; HOLIDAYS[ 138,2] = 0; 
HOLIDAYS[ 139,1] = 1091126; HOLIDAYS[ 139,2] = 0; 
HOLIDAYS[ 140,1] = 1091127; HOLIDAYS[ 140,2] = 0.5; 
HOLIDAYS[ 141,1] = 1091224; HOLIDAYS[ 141,2] = 0.5; 
HOLIDAYS[ 142,1] = 1091225; HOLIDAYS[ 142,2] = 0; 

// 2010 
HOLIDAYS[ 143,1] = 1100101; HOLIDAYS[ 143,2] = 0; 
HOLIDAYS[ 144,1] = 1100118; HOLIDAYS[ 144,2] = 0; 
HOLIDAYS[ 145,1] = 1100215; HOLIDAYS[ 145,2] = 0; 
HOLIDAYS[ 146,1] = 1100402; HOLIDAYS[ 146,2] = 0; 
HOLIDAYS[ 147,1] = 1100531; HOLIDAYS[ 147,2] = 0; 
HOLIDAYS[ 148,1] = 1100705; HOLIDAYS[ 148,2] = 0; 
HOLIDAYS[ 149,1] = 1100906; HOLIDAYS[ 149,2] = 0; 
HOLIDAYS[ 150,1] = 1101125; HOLIDAYS[ 150,2] = 0; 
HOLIDAYS[ 151,1] = 1101126; HOLIDAYS[ 151,2] = 0.5; 
HOLIDAYS[ 152,1] = 1101224; HOLIDAYS[ 152,2] = 0; 

Share this post


Link to post
Share on other sites

Hi aaa,

 

Thanks for your post.

 

I do not use MultiCharts. I know it works fine in TradeStation 8.+.

The error codes you posted are specific to MultiCharts.

 

I'll attempt to download MultiCharts and check it but I request

any other MultiCharts users to see if there is any Code

compatibility issues.

 

Regards,

Suri

Share this post


Link to post
Share on other sites

Hi Suri

 

My Problkem is resolved

 

I've changed the name of the function w/o changing this line of your code below

 

original

suri.isTradingDay = hreturn;

 

new name

$suri.isTradingDay = hreturn;

 

U've made a good job

 

Regards

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.


  • Topics

  • Posts

    • MNST Monster Beverage stock, top of range breakout above 60.45, from Stocks to Watch at https://stockconsultant.com/?MNST
    • there is no avoiding loses to be honest, its just how the market is. you win some and hopefully more, but u do lose some. 
    • Date: 11th July 2025.   Demand For Gold Rises As Trump Announces Tariffs!   Gold prices rose significantly throughout the week as investors took advantage of the 2.50% lower entry level. Investors also return to the safe-haven asset as the US trade policy continues to escalate. As a result, investors are taking a more dovish tone. The ‘risk-off’ appetite is also something which can be seen within the stock market. The NASDAQ on Thursday took a 0.90% dive within only 30 minutes.   Trade Tensions Escalate President Trump has been teasing with new tariffs throughout the week. However, the tariffs were confirmed on Thursday. A 35% tariff on Canadian imports starting August 1st, along with 50% tariffs on copper and goods from Brazil. Some experts are advising that Brazil has been specifically targeted due to its association with the BRICS.   However, the President has not directly associated the tariffs with BRICS yet. According to President Trump, Brazil is targeting US technology companies and carrying out a ‘witch hunt’against former Brazilian President Jair Bolsonaro, a close ally who is currently facing prosecution for allegedly attempting to overturn the 2022 Brazilian election.   Although Brazil is one of the largest and fastest-growing economies in the Americas, it is not the main concern for investors. Investors are more concerned about Tariffs on Canada. The White House said it will impose a 35% tariff on Canadian imports, effective August 1st, raised from the earlier 25% rate. This covers most goods, with exceptions under USMCA and exemptions for Canadian companies producing within the US.   It is also vital for investors to note that Canada is among the US;’s top 3 trading partners. The increase was justified by Trump citing issues like the trade deficit, Canada’s handling of fentanyl trafficking, and perceived unfair trade practices.   The President is also threatening new measures against the EU. These moves caused US and European stock futures to fall nearly 1%, while the Dollar rose and commodity prices saw small gains. However, the main benefactor was Silver and Gold, which are the two best-performing metals of the day.   How Will The Fed Impact Gold? The FOMC indicated that the number of members warming up to the idea of interest rate cuts is increasing. If the Fed takes a dovish tone, the price of Gold may further rise. In the meantime, the President pushing for a 3% rate cut sparked talk of a more dovish Fed nominee next year and raised worries about future inflation.   Meanwhile, jobless claims dropped for the fourth straight week, coming in better than expected and supporting the view that the labour market remains strong after last week’s solid payroll report. Markets still expect two rate cuts this year, but rate futures show most investors see no change at the next Fed meeting. Gold is expected to finish the week mostly flat.       Gold 15-Minute Chart     If the price of Gold increases above $3,337.50, buy signals are likely to materialise again. However, the price is currently retracing, meaning traders are likely to wait for regained momentum before entering further buy trades. According to HSBC, they expect an average price of $3,215 in 2025 (up from $3,015) and $3,125 in 2026, with projections showing a volatile range between $3,100 and $3,600   Key Takeaway Points: Gold Rises on Safe-Haven Demand. Gold gained as investors reacted to rising trade tensions and market volatility. Canada Tariffs Spark Concern. A 35% tariff on Canadian imports drew attention due to Canada’s key trade role. Fed Dovish Shift Supports Gold. Growing expectations of rate cuts and Trump’s push for a 3% cut boosted the gold outlook. Gold Eyes Breakout Above $3,337.5. Price is consolidating; a move above $3,337.50 could trigger new buy signals. Always trade with strict risk management. Your capital is the single most important aspect of your trading business.   Please note that times displayed based on local time zone and are from time of writing this report.   Click HERE to access the full HFM Economic calendar.   Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding of how markets work. Click HERE to register for FREE!   Click HERE to READ more Market news.   Michalis Efthymiou HFMarkets   Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in Leveraged Products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
    • Back in the early 2000s, Netflix mailed DVDs to subscribers.   It wasn’t sexy—but it was smart. No late fees. No driving to Blockbuster.   People subscribed because they were lazy. Investors bought the stock because they realized everyone else is lazy too.   Those who saw the future in that red envelope? They could’ve caught a 10,000%+ move.   Another story…   Back in the mid-2000s, Amazon launched Prime.   It wasn’t flashy—but it was fast.   Free two-day shipping. No minimums. No hassle.   People subscribed because they were impatient. Investors bought the stock because they realized everyone hates waiting.   Those who saw the future in that speedy little yellow button? They could’ve caught another 10,000%+ move.   Finally…   Back in 2011, Bitcoin was trading under $10.   It wasn’t regulated—but it worked.   No bank. No middleman. Just wallet to wallet.   People used it to send money. Investors bought it because they saw the potential.   Those who saw something glimmering in that strange orange coin? They could’ve caught a 100,000%+ move.   The people who made those calls weren’t fortune tellers. They just noticed something simple before others did.   A better way. A quiet shift. A small edge. An asymmetric bet.   The red envelope fixed late fees. The yellow button fixed waiting. The orange coin gave billions a choice.   Of course, these types of gains are rare. And they happen only once in a blue moon. That’s exactly why it’s important to notice when the conditions start to look familiar.   Not after the move. Not once it's on CNBC. But in the quiet build-up— before the surface breaks.   Enter the Blue Button Please read more here: https://altucherconfidential.com/posts/netflix-amazon-bitcoin-blue  Profits from free accurate cryptos signals: https://www.predictmag.com/ 
    • What These Attacks Look Like There are several ways you could get hacked. And the threats compound by the day.   Here’s a quick rundown:   Phishing: Fake emails from your “bank.” Click the link, give your password—game over.   Ransomware: Malware that locks your files and demands crypto. Pay up, or it’s gone.   DDoS: Overwhelm a website with traffic until it crashes. Like 10,000 bots blocking the door. Often used by nations.   Man-in-the-Middle: Hackers intercept your messages on public WiFi and read or change them.   Social Engineering: Hackers pose as IT or drop infected USB drives labeled “Payroll.”   You don’t need to be “important” to be a target.   You just need to be online.   What You Can Do (Without Buying a Bunker) You don’t have to be tech-savvy.   You just need to stop being low-hanging fruit.   Here’s how:   Use a YubiKey (physical passkey device) or Authenticator app – Ditch text message 2FA. SIM swaps are real. Hackers often have people on the inside at telecom companies.   Use a password manager (with Yubikey) – One unique password per account. Stop using your dog’s name.   Update your devices – Those annoying updates patch real security holes. Use them.   Back up your files – If ransomware hits, you don’t want your important documents held hostage.   Avoid public WiFi for sensitive stuff – Or use a VPN.   Think before you click – Emails that feel “urgent” are often fake. Go to the websites manually for confirmation.   Consider Starlink in case the internet goes down – I think it’s time for me to make the leap. Don’t Panic. Prepare. (Then Invest.)   I spent an hour in that basement bar reading about cyberattacks—and watching real-world systems fall apart like dominos.   The internet going down used to be an inconvenience. Now, it’s a warning.   Cyberwar isn’t coming. It’s here.   And the next time your internet goes out, it might not just be your router.   Don’t panic. Prepare.   And maybe keep a backup plan in your back pocket. Like a local basement bar with good bourbon—and working WiFi.   As usual, we’re on the lookout for more opportunities in cybersecurity. Stay tuned.   Author: Chris Campbell (AltucherConfidential) Profits from free accurate cryptos signals: https://www.predictmag.com/   
×
×
  • Create New...

Important Information

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