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
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ | |
// https://gist.github.com/NVentimiglia/52e0ce1ad871fdb4bd86153523d17fa9 | |
//@version=5 | |
indicator("[Nic] Intraday Volume Cycles") | |
sample = input.int(10, "Days to sample") | |
// heatmap colors | |
chm1 = #ff0000 // extra high red |
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
//@version=4 | |
study("Zig Zag Percent [Nic]", overlay = true, max_bars_back = 500) | |
prd1 = input(defval = 20, title="ZigZag Period 1", minval = 2, maxval = 1000) | |
showlabel = input(defval = true, title = "Show Label") | |
showhline = input(defval = true, title = "Show Pivot Line") | |
showline = input(defval = true, title = "Show Zig Line") | |
upcol1 = input(defval = color.green, title = "Zig Zag Up Color") | |
dncol1 = input(defval = color.red, title = "Zig Zag Down Color") | |
txtcol = input(defval = color.white, title = "Text Color") | |
zz1style = input(defval = "Dashed", title = "Zig Zag Line Style", options = ["Dashed", "Dotted"]) |
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
#NIC_OptionVolume | |
# @NicTheMajestic | |
# ThinkScript Histogram of near the money option volume | |
# Requires setting of option expiry | |
declare lower; | |
input optionExpiry = "210716"; | |
def price = Round(open, 0); |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Net; | |
using System.Net.Http; | |
using System.Runtime.InteropServices; | |
using System.Text.Json; | |
using System.Threading.Tasks; | |
using System.Web; |
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
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Web; | |
using UnityEngine; | |
using UnityEngine.Networking; | |
namespace TDAmeritrade | |
{ | |
[Serializable] |
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
# | |
# https://github.com/NVentimiglia | |
# Nic_CumTick | |
# ThinkScript : NYSE Cumilitive Indicator | |
# | |
declare lower; | |
def upper = no; | |
input hidecumtick = yes; | |
input symbol = "$TICK"; |
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
# | |
# https://github.com/NVentimiglia | |
# Nic_IVCorrelation | |
# ThinkScript : IV Correlation, use to identify divergences in implied and realized volatility | |
# | |
declare lower; | |
input length = 10; | |
def ImpVol = IMP_VOLATILITY(); |
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
public class SpyService | |
{ | |
string siteUrl = "https://ssltools.forexprostools.com/technical_summary.php?pairs=166"; | |
HttpClient httpClient = new HttpClient(); | |
public async Task<string> Get() | |
{ | |
try | |
{ | |
HttpResponseMessage request = await httpClient.GetAsync(siteUrl); |
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
public class ApplicationSignInManager : SignInManager<UserData, string> | |
{ | |
public ApplicationSignInManager(ApplicationUserManager userManager, IAuthenticationManager authenticationManager) | |
: base(userManager, authenticationManager) | |
{ | |
} | |
public override Task<ClaimsIdentity> CreateUserIdentityAsync(UserData user) | |
{ | |
return user.GenerateUserIdentityAsync((ApplicationUserManager)UserManager); |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using LiteNetLib; | |
using LiteNetLib.Utils; | |
namespace LibSample |
NewerOlder