Stock market 15 minute calendar

erickguz

Board Regular
Joined
May 11, 2010
Messages
58
Hi,

So, I'm having a rough go at it trying to create a calendar without manually entering every 26th row.

I am attempting to create a 15 minute calendar for Stocks.

For example:
COL A
9/3/19 9:30 AM
9/3/19 9:45 AM = WORKDAY(A1,1,[holidays])+15/1440
9/3/19 10:00 AM = WORKDAY(A1,1,[holidays])+15/1440
9/3/19 10:15 AM = WORKDAY(A1,1,[holidays])+15/1440

I need 2,000 "dates", trading days only.


I am having trouble combining WORKDAY and TIME FUNCTION for the next trading day. The trading session lasts from 9:30 AM until 3:45 PM each day, and then goes to the next trading day.

For example:

9/3/19 3:45 PM
9/4/19 9:30 AM = ?????
9/4/19 9:45 AM

Is it possible to create such a trading calendar?
 
Last edited:

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
9/3/19 9:30 AM in A1, try this the formula in A2 and copy down:

=IF(ROUND(MOD(A1,1),0)*1440= 945,WORKDAY(A1,1,[holidays])+570/1440,A1+15/1440)
 
Upvote 0
Hi - unfortunately, it doesn't stop at 3:45 pm. Keeps going throughout entire day.

9/13/19 14:30
9/13/19 14:45
9/13/19 15:00
9/13/19 15:15
9/13/19 15:30
9/13/19 15:45
9/13/19 16:00
9/13/19 16:15
9/13/19 16:30
9/13/19 16:45
9/13/19 17:00
9/13/19 17:15
9/13/19 17:30
9/13/19 17:45
9/13/19 18:00

<colgroup><col></colgroup><tbody>
</tbody>
 
Upvote 0
Sorry, try this:

=IF(ROUND(MOD(A1,1)*1440,0)= 945,WORKDAY(A1,1,[holidays])+570/1440,A1+15/1440)
 
Upvote 0
It worked very well. Thank you!

I also revised for decreasing increments: =IF(ROUND(MOD(A1,1)*1440,0)= 570,WORKDAY(A1,-1,$B$4:$B$20)+945/1440,A1-15/1440)

I thought the formula would be more complicated but it is knowledgeably simple!

Thank you.
 
Upvote 0

Forum statistics

Threads
1,214,971
Messages
6,122,520
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top