Skip to content

Instantly share code, notes, and snippets.

View feliperazeek's full-sized avatar
💭
Be there and give a shit

Felipe Oliveira feliperazeek

💭
Be there and give a shit
View GitHub Profile
@feliperazeek
feliperazeek / prf.pine
Created March 9, 2025 14:22
NakInvest - PFR
//@version=5
strategy("NakInvest - PFR Strategy", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=10)
// === INPUTS ===
shortEmaLength = input.int(9, title="Short EMA Length")
longEmaLength = input.int(100, title="Long EMA Length")
stochLength = input.int(8, title="Stochastic Length")
stochK = input.int(3, title="Stoch %K Smoothing")
stochD = input.int(3, title="Stoch %D Smoothing")
rsiLength = input.int(8, title="RSI Length")
@feliperazeek
feliperazeek / bullish-candles.pine
Created March 8, 2025 18:51
NakInvest - Bullish Candles
//@version=5
indicator("NakInvest - Bullish Candlestick Patterns", overlay=true)
// Function to identify a Hammer pattern
isHammer() =>
lowerShadow = low < close - (high - low) * 0.5
upperShadow = high - close < (high - low) * 0.1
bodySize = math.abs(close - open)
bodySize < (high - low) * 0.3 and lowerShadow and upperShadow
@feliperazeek
feliperazeek / inversao-polaridade.pine
Last active March 8, 2025 18:52
Trading View - Inversao de Polaridade
//@version=5
indicator("NakInvest - Bullish Candlestick Patterns with Doji", overlay=true)
// Function to identify a Hammer pattern
isHammer() =>
lowerShadow = low < close - (high - low) * 0.5
upperShadow = high - close < (high - low) * 0.1
bodySize = math.abs(close - open)
bodySize < (high - low) * 0.3 and lowerShadow and upperShadow
@feliperazeek
feliperazeek / IcebergTableStatsTest.scala
Created April 8, 2024 16:10
Iceberg Lower/Upper Bounds in Data Files (Parquet vs Avro)
import org.apache.hadoop.conf.Configuration
import org.apache.iceberg.hadoop.HadoopFileIO
import org.apache.iceberg.spark.Spark3Util
import org.apache.iceberg.{DataFile, Snapshot, TableProperties, Table => IcebergTable}
import org.apache.spark.SparkConf
import org.apache.spark.sql.functions._
import org.apache.spark.sql.types.{StringType, StructField, StructType, TimestampType}
import org.apache.spark.sql.{DataFrame, Row, SparkSession}
import org.junit.runner.RunWith
import org.scalatest.BeforeAndAfterAll
@feliperazeek
feliperazeek / IcebergResidual2Test.scala
Created March 14, 2024 19:26
Iceberg Residual Test
import org.apache.hadoop.conf.Configuration
import org.apache.iceberg.hadoop.HadoopFileIO
import org.apache.iceberg.spark.Spark3Util
import org.apache.iceberg.{DataFile, PartitionSpec, Schema, Snapshot, TableMetadata, TableMetadataParser, Table => IcebergTable}
import org.apache.spark.SparkConf
import org.apache.spark.sql.functions._
import org.apache.spark.sql.types.{StringType, StructField, StructType, TimestampType}
import org.apache.spark.sql.{DataFrame, Row, SparkSession}
import org.junit.runner.RunWith
import org.scalatest.BeforeAndAfterAll
@feliperazeek
feliperazeek / ty-turtle-jump.py
Created May 24, 2022 20:04
Ty's Python Turtle Game
import turtle
import random
t = turtle.Turtle()
scorey = turtle.Turtle()
score = 0
t.goto(0,0)
scorey.penup()
scorey.goto(200,200)
t.setheading(90)
c = turtle.Turtle()
{
"type" : "record",
"name" : "twitter_schema",
"namespace" : "foo.bar",
"fields" : [ {
"name" : "username",
"type" : "string",
"doc" : "Name of the user account on Twitter.com"
}, {
"name" : "tweet",
### My publicly-auditable identity:
https://keybase.io/felipera
### From the command line:
Consider the [keybase command line program](https://keybase.io/download).
```bash
# look me up
@feliperazeek
feliperazeek / gist:8feb499216851612ed9de2def805aaae
Created October 27, 2016 04:07
HackerRank - Cracking the Code Interview - Sorting: Bubble Sort (https://www.hackerrank.com/challenges/ctci-bubble-sort)
import java.io.*;
import java.util.*;
public class Solution {
private static void work(int[] a) {
int swaps = 0;
int n = a.length;
@feliperazeek
feliperazeek / Solution.java
Created October 18, 2016 05:41
HackerRank - Cracking the Code Interview - Time Complexity: Primality (https://www.hackerrank.com/challenges/ctci-big-o)
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
private static boolean isPrime(int n) {
if (n <= 1) return false;