Skip to content

Instantly share code, notes, and snippets.

@ih2502mk
ih2502mk / list.md
Last active December 12, 2025 09:20
Quantopian Lectures Saved
@juanmirocks
juanmirocks / Pivot Points, by @juanmirocks.js
Last active February 25, 2023 03:48
Pine Script for a TradingView indicator: Pivot Points
// @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
@erysaj
erysaj / trading-view-chart.html
Last active November 3, 2025 11:42
Embed TradingView chart widget
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
height: 100%;
width: 100%;
}
</style>
<title>Chart Demo</title>