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

    • Thx for reminding us... I don't bang that drum often enough anymore Another part for consideration is who that money initially went to...
    • TDUP ThredUp stock, watch for a top of range breakout above 2.94 at https://stockconsultant.com/?TDUP
    • How long does it take to receive HFM's withdrawal via Skrill? less than 24H?
    • My wife Robin just wanted some groceries.   Simple enough.   She parked the car for fifteen minutes, and returned to find a huge scratch on the side.   Someone keyed her car.   To be clear, this isn’t just any car.   It’s a Cybertruck—Elon Musk's stainless-steel spaceship on wheels. She bought it back in 2021, before Musk became everyone's favorite villain or savior.   Someone saw it parked in a grocery lot and felt compelled to carve their hatred directly into the metal.   That's what happens when you stand out.   Nobody keys a beige minivan.   When you're polarizing, you're impossible to ignore. But the irony is: the more attention something has, the harder it is to find the truth about it.   What’s Elon Musk really thinking? What are his plans? What will happen with DOGE? Is he deserving of all of this adoration and hate? Hard to say.   Ideas work the same way.   Take tariffs, for example.   Tariffs have become the Cybertrucks of economic policy. People either love them or hate them. Even if they don’t understand what they are and how they work. (Most don’t.)   That’s why, in my latest podcast (link below), I wanted to explore the “in-between” truth about tariffs.   And like Cybertrucks, I guess my thoughts on tariffs are polarizing.   Greg Gutfield mentioned me on Fox News. Harvard professors hate me now. (I wonder if they also key Cybertrucks?)   But before I show you what I think about tariffs… I have to mention something.   We’re Headed to Austin, Texas This weekend, my team and I are headed to Austin. By now, you should probably know why.   Yes, SXSW is happening. But my team and I are doing something I think is even better.   We’re putting on a FREE event on “Tech’s Turning Point.”   AI, quantum, biotech, crypto, and more—it’s all on the table.   Just now, we posted a special webpage with the agenda.   Click here to check it out and add it to your calendar.   The Truth About Tariffs People love to panic about tariffs causing inflation.   They wave around the ghost of the Smoot-Hawley Tariff from the Great Depression like it’s Exhibit A proving tariffs equal economic collapse.   But let me pop this myth:   Tariffs don’t cause inflation. And no, I'm not crazy (despite what angry professors from Harvard or Stanford might tweet at me).   Here's the deal.   Inflation isn’t when just a couple of things become pricier. It’s when your entire shopping basket—eggs, shirts, Netflix subscriptions, bananas, everything—starts costing more because your money’s worth less.   Inflation means your dollars aren’t stretching as far as they used to.   Take the 1800s.   For nearly a century, 97% of America’s revenue came from tariffs. Income tax? Didn’t exist. And guess what inflation was? Basically zero. Maybe 1% a year.   The economy was booming, and tariffs funded nearly everything. So, why do people suddenly think tariffs cause inflation today?   Tariffs are taxes on imports, yes, but prices are set by supply and demand—not tariffs.   Let me give you a simple example.   Imagine fancy potato chips from Canada cost $10, and a 20% tariff pushes that to $12. Everyone panics—prices rose! Inflation!   Nope.   If I only have $100 to spend and the price of my favorite chips goes up, I either stop buying chips or I buy, say, fewer newspapers.   If everyone stops buying newspapers because they’re overspending on chips, newspapers lower their prices or go out of business.   Overall spending stays the same, and inflation doesn’t budge.   Three quick scenarios:   We buy pricier chips, but fewer other things: Inflation unchanged. Manufacturers shift to the U.S. to avoid tariffs: Inflation unchanged (and more jobs here). We stop buying fancy chips: Prices drop again. Inflation? Still unchanged. The only thing that actually causes inflation is printing money.   Between 2020 and 2022 alone, 40% of all money ever created in history appeared overnight.   That’s why inflation shot up afterward—not because of tariffs.   Back to tariffs today.   Still No Inflation Unlike the infamous Smoot-Hawley blanket tariff (imagine Oprah handing out tariffs: "You get a tariff, and you get a tariff!"), today's tariffs are strategic.   Trump slapped tariffs on chips from Taiwan because we shouldn’t rely on a single foreign supplier for vital tech components—especially if that supplier might get invaded.   Now Taiwan Semiconductor is investing $100 billion in American manufacturing.   Strategic win, no inflation.   Then there’s Canada and Mexico—our friendly neighbors with weirdly huge tariffs on things like milk and butter (299% tariff on butter—really, Canada?).   Trump’s not blanketing everything with tariffs; he’s pressuring trade partners to lower theirs.   If they do, everybody wins. If they don’t, well, then we have a strategic trade chess game—but still no inflation.   In short, tariffs are about strategy, security, and fairness—not inflation.   Yes, blanket tariffs from the Great Depression era were dumb. Obviously. Today's targeted tariffs? Smart.   Listen to the whole podcast to hear why I think this.   And by the way, if you see a Cybertruck, don’t key it. Robin doesn’t care about your politics; she just likes her weird truck.   Maybe read a good book, relax, and leave cars alone.   (And yes, nobody keys Volkswagens, even though they were basically created by Hitler. Strange world we live in.) Source: https://altucherconfidential.com/posts/the-truth-about-tariffs-busting-the-inflation-myth    Profits from free accurate cryptos signals: https://www.predictmag.com/       
    • No, not if you are comparing apples to apples. What we call “poor” is obviously a pretty high bar but if you’re talking about like a total homeless shambling skexie in like San Fran then, no. The U.S.A. in not particularly kind to you. It is not an abuse so much as it is a sad relatively minor consequence of our optimism and industriousness.   What you consider rich changes with circumstances obviously. If you are genuinely poor in the U.S.A., you experience a quirky hodgepodge of unhelpful and/or abstract extreme lavishnesses while also being alienated from your social support network. It’s about the same as being a refugee. For a fraction of the ‘kindness’ available to you in non bio-available form, you could have simply stayed closer to your people and been MUCH better off.   It’s just a quirk of how we run the place and our values; we are more worried about interfering with people’s liberty and natural inclination to do for themselves than we are about no bums left behind. It is a slightly hurtful position and we know it; we are just scared to death of socialism cancer and we’re willing to put our money where our mouth is.   So, if you’re a bum; you got 5G, the ER will spend like $1,000,000 on you over a hangnail but then kick you out as soon as you’re “stabilized”, the logistics are surpremely efficient, you have total unchecked freedom of speech, real-estate, motels, and jobs are all natural healthy markets in perfect competition, you got compulsory three ‘R’’s, your military owns the sky, sea, space, night, information-space, and has the best hairdos, you can fill out paper and get all the stuff up to and including a Ph.D. Pretty much everything a very generous, eager, flawless go-getter with five minutes to spare would think you might need.   It’s worse. Our whole society is competitive and we do NOT value or make any kumbaya exception. The last kumbaya types we had werr the Shakers and they literally went extinct. Pueblo peoples are still around but they kind of don’t count since they were here before us. So basically, if you’re poor in the U.S.A., you are automatically a loser and a deadbeat too. You will be treated as such by anybody not specifically either paid to deal with you or shysters selling bejesus, Amway, and drugs. Plus, it ain’t safe out there. Not everybody uses muhfreedoms to lift their truck, people be thugging and bums are very vulnerable here. The history of a large mobile workforce means nobody has a village to go home to. Source: https://askdaddy.quora.com/Are-the-poor-people-in-the-United-States-the-richest-poor-people-in-the-world-6   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.