Skip to content

Instantly share code, notes, and snippets.

View atengberg's full-sized avatar

atengberg atengberg

  • sidereal
View GitHub Profile
@kaigouthro
kaigouthro / Pine_Script_5_Mini_Reference.md
Last active May 1, 2024 04:36
A minimal reference to pine script v5

Pine Mini-Reference for more information

Pine Script™ Operators

The following operators are available.

Operator Description
+ Adds two operands
@TraderX0
TraderX0 / MutliTimeFramRSI.txt
Last active December 31, 2022 11:08
Pinescript trading view multi time frame RSI - Allows you to plot upto 3 MTF RSI's on one panel
// All credits go to CMoody for the original Idea...
// THE MTFRSI is an extension of his original script to now encorporate 3RSI's on one panel
study(title="TraderX0 3-RSI MTF", shorttitle="X0_3_RSI_MTF", precision=0)
//candle source
src = close
//rsi setup
//first RSI inputs
firstRsiTimeframe = input(title="Select 1st RSI Timeframe", type=resolution, defval="60")
@brinsche
brinsche / gist:d84fe9e7f2f0a128ec8a
Created July 22, 2015 21:59
Toolbar shadow in coordinatorlayout pre lollipop
elevation_compat.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:angle="270"
android:endColor="@android:color/transparent"
android:startColor="#50000000" />
</shape>
styles.xml
<style name="ElevationCompatTheme">