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 hidden or 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
| // @version=3 | |
| // | |
| // Pivot Points indicator, calculated in the "traditional" way, also called "floor-trader pivots". | |
| // | |
| // Additionally, and optional to the user, the halves between the key levels are also shown. | |
| // | |
| // The Default chosen Time Frame to calculate the pivot points is: | |
| // Daily (D) if within intraday | |
| // Weekly (W) if within daily chart | |
| // Monthly (M) if within weekly chart |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| html, body { | |
| height: 100%; | |
| width: 100%; | |
| } | |
| </style> | |
| <title>Chart Demo</title> |