Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
https://twitter.com/WifeyAlpha/status/1550841771252490241?s=20&t=ObFscKV5orb3mpjVppVgSA
- Why Globalization Works by Martin Wolf Amazon
- tbd
- The New Economics by Steve Keer Amazon
- When the Fund Stops by David Ricketts Amazon
- Safe Haven by Mark Spitznagel Amazon
- Mastering the Market Cycle by Howard Marks [Amazon](https://smile.amazon.com/Mastering-Market-
- Regimes & Correlations
- Risk On/Off Bull/Bear Markets
- The Vix
- Normie Starter Pack
- Piglet Pack
- Pig Pack
Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Private Sub Worksheet_SelectionChange(ByVal Target As Range) | |
Target.FormulaR1C1 = "" | |
End Sub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'don't do this anymore: | |
DataBlock.SpecialCells(xlCellTypeVisible).Copy Destination:=Target.Cells(1, 1) | |
'instead try this: | |
Dim rngDestination As Range 'this should be way up at the top with all the other declarations | |
' ... all the other code | |
Set rngDestination = Target.Cells(1, 1) | |
DataBlock.SpecialCells(xlCellTypeVisible).Copy | |
rngDestination.PasteSpecial xlPasteType:=xlPasteValuesAndNumberFormats |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Public Sub CombineManyWorkbooksIntoOneWorksheet() | |
Dim strDirContainingFiles As String, strFile As String, _ | |
strFilePath As String | |
Dim wbkDst As Workbook, wbkSrc As Workbook | |
Dim wksDst As Worksheet, wksSrc As Worksheet | |
Dim lngIdx As Long, lngSrcLastRow As Long, _ | |
lngSrcLastCol As Long, lngDstLastRow As Long, _ | |
lngDstLastCol As Long, lngDstFirstFileRow As Long |
NewerOlder