I'm trying to put together a var cross flag to determine if the price crosses above the previous days' high. This is for a screener so further security requests
lets say i want the price when 2 EMAs crosses and use that price to create another variable as an stoploss but in realtime the price always changes in realtime
im unable to move the stop loss to the entry price when i sell half of the position i have the entry price working and can get the price for the stop loss but i
I want to create a series in which every value is normalized to the value of a particular element in the series, for example the latest value. If you try syntax
Is there a way to create an indicator which reflects the current price of a stock in Pine Script? I need this indicator because I need to enter an order before
I'm trying to rewrite a script to Python, but I can't figure out how pivothigh() and pivotlow() function work, and I can't find source code, I know how to calcu
i want to do a strategy that entries a position at the buy-level (blue Line) and sells after reaching the take-profit-Level (green line) or the stop-level (red
The function to be used in this case is: cnt = math.sum(cond ? 1 : 0, len) In my (defective) example: NumberOfOccurrencesToBeCounted = math.sum(OccurrencesToBe
TradingView has this convenient Regression Trend tool in its UI, which can generate the trend channel for a specified period of time. I'm trying to create a pin
I've created a trading strategy in PineScript. I'm using strategy.entry to open longs and shorts (only one position at a time). And I am closing the current pos
I am having issue with the code below. Apparently this code gives buy/sell plotshapes on the chart, but it gives too many duplicate shapes (multiple buy signals
I'm not a coder but doing my best :) I have made some code for tradingview where I use ema's and hoffman strategy to open and close orders. First it was an indi
strategy("P&F scalp strat", shorttitle="MEXlongOnly_strat", overlay=true) timeframe = input('1') box = input('Traditional') boxsize = input(1, type=float) r
I am new to pine script. I am trying to create strategy with below condition. if current price is greater than supertrend(5,1) and current price is greater than
I know the maximum number of security() calls in pinescript is 40 but I came across following workaround from pinecoder.com : The limit for security() calls is
I am trying to plot values calculated in an GoogleSheets workbook on a tradingview chart. I cannot do the same calculations in Tradingview because the values co
So this is a follow-up from my previous question. I've tried to utilize some arrays to create multiple buy, profit taking and stop orders so that trades can be
I have been trying to use array feature, which recently has been introduced in PineScript 4, but it seams that either I'm not aware of its limitations, or , pos
I'm working strategy based on a MTF Stoch RSI indicator I created. In the strategy, based on Stoch RSI higher and medium timeframe direction and entry timeframe
I need to figure out how to turn my strategy into a study for V5 Pinescript. I cannot seem to find any info about it online. Im pretty sure for v3 you have to c