Atr tool 2 0 free download
Author: t | 2025-04-25
Atr Tool 2 0, free atr tool 2 0 software downloads, Page 3.
Atr Tool 2 0 Freeware - Free Download Atr Tool 2 0 - WinSite
Intraday. If anyone has tips to make this indicator simpler, easier, and faster, I would love that. I want to add a vertical line for time, and extend my yellow horizontal line left as well to show price... Similar to the vertical drawing/horz drawing for time/price. If I could also trigger this study every time my price/time drawings cross, that would be amazing!!!Just Labels from the 2nd Script: Profit and Loss Zones: Code: # Crude Buy Sell Zone indicator by ANTHDKN 06.04.2021# Free to use to all# First posted on usethinkscript.com# Manual entries for positionsinput value = .07;input dollarvalue = 0;input buy = yes;input thyme = 0630;input min = 2; # Mins tilldef BUY_YES_SELL_NO = if buy then no else yes;def thymeOffset = 0300;def showAt = thyme + thymeoffset;def avg = dollarvalue * .01;input AreYouIn = no;# Average True Range LabelAddLabel(!AreYouIn, "ATR: " + AsDollars(ATR()), Color.YELLOW);# You are in Labeladdlabel(areyouin, "In at " + asdollars(avg), color.white);# Profit/Loss zones as multiple of ATR# Sell Sidedef targetprice03 = if !Buy_Yes_Sell_No then (avg * .01) - (value * 3) else (avg * .01) + (value * 3);def targetprice02 = if !Buy_Yes_Sell_No then (avg * .01) - (value * 2) else (avg * .01) + (value * 2);def targetprice01 = if !Buy_Yes_Sell_No then (avg * .01) - (value) else (avg * .01) + (value);#Buy Sidedef targetprice1 = if Buy_Yes_Sell_No then (avg * .01) + (value) else (avg * .01) - (value);def targetprice2 = if Buy_Yes_Sell_No then (avg * .01) + (value * 2) else (avg * .01) - (value * 2);def targetprice3 = if Buy_Yes_Sell_No then (avg * .01) + (value * 3) else (avg * .01) - (value * 3);### Linesdef showLines = if AreYouIn then (if secondstillTime(showAt) Code: # Crude Buy Sell Zone indicator by ANTHDKN 06.04.2021# Free to use to all# First posted on usethinkscript.com# Auto entries from positionsinput value = .07;def avg = getaveragePrice();def AreYouIn = if getquantity() != 0 then yes else no;def targetprice02 = (avg) - (value*2);def TargetPrice01 = (avg) - value;def TargetPrice1 = (avg) + value;def TargetPrice2 = (avg) + (value * 2);def TargetPrice3 = (avg) + (value * 3);AddLabel(AreYouIn, getquantity() + "@" + avg + "= $" + (avg * getquantity()), Color.WHITE);AddLabel(AreYouIn, if GetOpenPL() > 0 then "P/L: $" + GetOpenPL() + " [" + aspercent(getopenPL() / (avg * getquantity())) + "]" else "P/L: -$" + GetOpenPL() + " [" + aspercent(getopenPL() / (avg * getquantity())) + "]", if GetOpenPL() > 0 then Color.DARK_GREEN else Color.DARK_RED);plot downside2 = if avg != 0 then TargetPrice02 else double.nan;downside2.setstyle(curve.FIRM);downside2.setdefaultColor(color.DARK_RED);plot downside1 = if avg != 0 then TargetPrice01 else double.nan;downside1.setstyle(curve.SHORT_DASH);downside1.setdefaultColor(color.red);plot avgprice = if avg != 0 then avg else double.nan;avgprice.setstyle(curve.SHORT_DASH);avgprice.setdefaultColor(color.Yellow);plot upside1 = if avg != 0 then TargetPrice1 else double.nan;upside1.setstyle(curve.SHORT_DASH);upside1.setdefaultColor(color.light_GREEN);plot upside2 = if avg != 0 then TargetPrice2 else double.nan;upside2.setstyle(curve.SHORT_DASH);upside2.setdefaultColor(color.light_GREEN);plot upside3 = if avg != 0 then TargetPrice3 else double.nan;upside3.setstyle(curve.FIRM);upside3.setdefaultColor(color.dark_GREEN);#AddLabel(AreYouIn,# "[-" + AsPercent(value*2 / TargetPrice2) + "]" +# ":" + AsDollars(targetprice01) +# " [-" + AsPercent(value / targetprice01) + "]" +# ":" + AsDollars(TargetPrice01),# if avg Last edited by a #1 Tired of flipping over to the monitor tab to see how your trade is going?Problem solved!Here are your P&L Labels For ChartsThis script provides the P/L For Accumulated TradesThe Net PnL uses a cost adjusted basis: ProfitLossMode.COST_BASISThese labels includethe total Quantity bought,Average Purchase Price per share and total,the Adjusted Average Sales Price per share and totaland the net Gain/LossYou can edit out the fields that you don't want. Ruby: # Profit & Loss Label (on a cost adjusted basis)# @merryday 2/2023input PLMode = ProfitLossMode.COST_BASIS;def PL = GetOpenPL(profitLossMode = PLMode) ;def Entry = if GetAveragePrice() != 0 then GetAveragePrice() else Entry[1];def GainLoss = if PL != 0 then PL else GainLoss[1];def Qty = if GetQuantity() != 0 then GetQuantity() else Qty[1];DefineGlobalColor("Gain", CreateColor(0, 165, 0)) ;DefineGlobalColor("Loss", CreateColor(225, 0, 0)) ;AddLabel(GainLoss,"Qty: " + Qty + " Entry/shr $" + Entry + " Exit/shr $" + (Entry+GainLoss)+ " | Total Purchase: " +Qty*Entry + " Total Sale: " +Qty*(Entry+GainLoss)+" | P/L: " + AsDollars(GainLoss*Qty), if GainLoss > 0 then GlobalColor("Gain") else GlobalColor("Loss")); Last edited: Sep 30, 2024 #2 Hello,I've put together a simple profit/loss zone indicator/study that will help with visualizing profit/loss zones. I would love to see others add/expand/improve this for automation as well as to use in range-bar setup. Here's the code, and a couple of use-cases.The process of displaying this is very crude, but it's manual. I trade on another platform for day-trading and use TOS for visualizing, so I wanted a way to see my stop zones. The way it works is you enter a profit/loss range in $ amount. I trade using ATR, so I either use 1:1 ATR for my range, or .5:1 ATR range for tighter moves. The zones can switch between buy and sell. Yellow dotted line indicates $ figure you are in at. the plot posts at a certain time, and for a duration after, which you can extend if you like. You can switch on/off by indicating if you're in. Here are the figures:Value: 00.00 # Use this to indicate the rage between your loss/take profit. If you believe $ will go up by $0.05, then type 0.05dollarvalue: 0000 # Use this to indicate your dollar value. The number will divide by 100, so 4000 = 40.00 aka $40.00Buy: yes/no #this is if you are long or short. Buy yes means long, buy no means short. Its crude but I understand it...Thyme: 0000 # Use this to indicate time. 0630 is 06:30... 834 is 08:34.. etcmin: 0 #How many minutes you expect to sit in your trade... I use 10 or so by default depending on volitilityare you in: yes/no #show the graph or not, I had it automatic with getquantity() but again I use this for charting more than trading on TOSThe zones are 1x 2x 3x and -1x -2x, I added clouds as well just to give me a better look. I would love to use this on Range bars using ATR ranges because this is how I mainly trade, priceactionAtr 2 0 Tool Software - Free Download Atr 2 0 Tool - WinSite
All ATR Products are now on sale. ATR Web Premier Source Code.File Name:ATR 1 Module Source Code Author:Xpress Software Inc.License:Commercial ($2000.00)File Size:Runs on:Windows 95, Windows NT, Windows 2000, Windows Advertisement Advertisement ATR Monitor monitors and records your computer activity and allocates it to predefined projects. ATR Monitor monitors and records your computer activity and allocates it to predefined projects. If you would like to automatically track your software applications and time spent - download ATR Monitor.File Name:atr_monitor.exe Author:Xpress Software Inc.License:Shareware ($)File Size:2.16 MbRuns on:WindowsAll ATR Products are now on sale. ATR Products Complete Source Code Library.File Name:ATR Products Complete SourceCode Library Author:Xpress Software Inc.License:Commercial ($5000.00)File Size:Runs on:Windows 95, Windows NT, Windows 2000, WindowsATR Timer helps you to track your projects and time spent with a single click . ATR Timer runs in Windows system tray and tracks your projects with 1 click - you can start, pause or stop your project just by clicking on ATR Timer icon.File Name:atr_timer.exe Author:Xpress Software Inc.License:Shareware ($19.95)File Size:3.23 MbRuns on:Win95, Win98, WinME, WinNT 4.x, WinXP, Windows2000, Windows2003ATR Billing will help you manage your most important area: money! ATR Billing will keep track of your subcontractor rates, your default client rates, even your project rates... All necessary reports will be available at your fingertips with a single. ...File Name:atr_billing.exe Author:Xpress Software IncLicense:Demo ($14.99)File Size:3.05 MbRuns on:Windows Vista, 2003, XP, 2000, 98, Me, NTAll ATR Products are now on sale! Advanced Time Reports Palm ATR Palm is a simple time tracking & project management software for Palm OS based devices. ATR Palm can be synchronized with ATR Personal or ATR Professional with just one click, so you. ...File Name:ATR Palm Author:Xpress Software Inc.License:Commercial ($29.99)File Size:Runs on:Palm OSThe Adobe Type Reunion (ATR) Deluxe 2.5 to 2.5.2 Update resolves an incompatibility with Apple Mac OS 9. The 2.5.2. Atr Tool 2 0, free atr tool 2 0 software downloads, Page 3.Atr 2 0 Tools Freeware - Free Download Atr 2 0 Tools - WinSite
There is simply no comparison between the 2 plugins not only because they are modeled after different tapesbut also WAVES will have to dig in a lot further even to come remotely close to the brilliant ATR 102 emulation.Please feel free to test yourself and post if you have any other opinion.Cheers and let peace prevail!!Khussh #2 Well i clearly was saved from wasting my 99 dollars thanks to the waves demo , but to me there is simply no comparison between the 2 plugins not only because they are modeled after different tapesThere was a reason why WAVES sold the MPX, whoops the Kramer Master Tape for under a 100 bucks. People were going more gaga over the low price than what kind of sounds and features it actually offered. Having already been using the UAD Studer A800 for many months before the KMT came out, I already had a solid base line for what a reel to reel tape sim should sound like and offer feature wise. Like you, the KMT never did it for me and I kept my $99, in my pocket. Now for mix bus, mastering and FX use, the ATR-102 simply blows the KMT away. I would rather have one instance of the UAD ATR-102 than a hundred of the KMT. In the end, you get what you pay for. In the case of the ATR-102, it is simply the best and most versatile reel to reel tape sim in the DAW world. In fact, I think it is the best and most detailed plug-in emulation that UA has ever done and worth every penny. Cheers,Billy Buck #3 I demo-ed the waves MPX when it first came out , so i couldn't do a direct shootout with ATR. At the time I already had Indicators Version: 1.24 Updated: 19 July 2021 Activations: 10 Ultimate Renko is a full implementation of a robust Renko style charting solution for MT4. It enables creating custom live charts resembling Median Renko, Mean Renko, Turbo Renko, and Better Renko candles as well as Vanilla Renko and Renko with wicks, PointO charts, and many more. This all-in-one package provides all of the signals needed by day traders, scalpers, and even long-term traders. You can apply all of the standard and custom indicators and technical studies as well as templates to the Renko charts and you can run EAs directly on these charts as well* (see text below the input summary). To create the Renko chart you need to attach the indicator to a standard timeframe (1 minute is recommended) and use the indicator's settings to generate a live custom chart that will be displayed on an offline chart. Available settings == Bar type definition == Renko body size - Defines the size of the candle body. Renko body calculation mode - ( pips / ticks/ points / ATR % / % ) Presets (sets 3 values below): (Renko / Median Renko / PointO / Turbo Renko / Hybrid Renko) Open offset % (0 to ..) - offsets the new trending bar's open value back by % or the defined candle body size (see the last screenshot) Reversal Open offset % (0 to ..) - offsets the new reversal bar's open value back by % or the defined candle body size (see the last screenshot) Reversal bar size % (0 to ..) - sets the size of the reversal bar as a % or the defined candle body size (see the last screenshot) Show wicks (true/false) Build history for a number of days Build history starting from date == Settings for ATR based calculation == Daily ATR period Percentage of ATR to calculate candle body size == Chart synchronization == Truncate trailing digits on the first renko Number of digits to truncate Reset Open on each trading day Override start of trading day == Misc settings == Display on offline chartAtr 2 0 Tools Software - Free Download Atr 2 0 Tools - WinSite
The volatility adjusted relative strength indicator offers a more precise approach to traditional RS indicators by incorporating volatility adjustments into its calculations. This will provide traders with a more nuanced view of relative performance between a selected instrument and a comparison index. Identifying Relative Strength (RS) and Weakness (RW) against a benchmark like the SPY is crucial for traders, as it highlights institutional activity in an equity, which retail traders rarely achieve on their own. However, the traditional method of simply comparing the rate of change of a stock to the rate of change for the SPY can be flawed. This method often fails to account for the inherent volatility of each stock, leading to misleading RS/RW readings.Consider two stocks that both move in response to SPY's movements. If SPY moves significantly more than its average (measured by its ATR), and the stock does the same, traditional RS calculations might show strength when, in fact, the stock is just mirroring SPY's increased volatility. For instance, if SPY typically moves $0.25 an hour but suddenly moves $1, and a stock typically moves $0.50 but moves $2, the stock's apparent RS might be overstated, when in reality there is no relative strength for the stock. By adjusting for volatility using the ATR (Average True Range), we normalize these movements and get a clearer picture of true RS/RW. For example, if SPY moves 5 times its average rate and a stock moves the same multiple of its own ATR, the RS should be considered neutral rather than strong. Similarly if a stock in absolute terms moves $1 while the SPY also moves $1 but the stock usually moves at twice the rate of the SPY, the stock should be considered relatively weak - not neutral.UsageUse this to identify stocks with actual strength or weakness compared to the market. When the RS line is above 0 and above the moving average it indicates a stock with relative strength that is still gaining more strength.When the RS line is above 0 but above the moving average it indicates a stock with relative strength that is currently losing strength.When the RS line is below 0 and below the moving average it indicates a stock with relative weakness that is still losing strength.When the RS line is below 0 but above the moving average it indicates a stock with relative weakness that is starting to gain backAtr 2 0 Tool Freeware - Free Download Atr 2 0 Tool - WinSite
For i = 1 to 5 strategy.entry("Entry " + str.tostring(i), strategy.long, qty = 5) totalOrders += 1// Place short orders on every odd bar.else strategy.entry("Short", strategy.short, qty = 25) totalOrders += 1// Display total orders and index of first non-trimmed trade in a table cell on last bar.if barstate.islastconfirmedhistory var table t = table.new(position.bottom_right, 1, 3, color.yellow, color.black, 1) // Display total orders and closed trades counts. string ordersText = "Total orders: " + str.tostring(totalOrders, "#,###") + "\n Closed trades: " + str.tostring(strategy.closedtrades, "#,###") t.cell(0, 0, ordersText, text_halign = text.align_right, text_size = size.large) // Display the first non-trimmed trade index and its entry price. string firstTradeIndex = str.tostring(strategy.closedtrades.first_index, "#,###") string firstTradePrice = str.tostring(strategy.closedtrades.entry_price(strategy.closedtrades.first_index), "$##.##") string firstTradeText = str.format("Index of first non-trimmed trade: {0}\nEntry price of trade #{0}: {1}", firstTradeIndex, firstTradePrice) t.cell(0, 1, firstTradeText, text_halign = text.align_right, text_size = size.large, bgcolor = #61dd5165) // Trying to reference the trimmed trades (e.g., first closed trade) returns `na`. if totalOrders > 9000 string trimmedTradePrice = "Entry price of trade #0: " + str.tostring(strategy.closedtrades.entry_price(0)) t.cell(0, 2, trimmedTradePrice, text_size = size.large, bgcolor = #dd51c665)`strategy.exit()` evaluates parameter pairsThe strategy.exit() function has three sets of relative and absolute parameters that define price levels for exit order calculations. The relative parameters profit, loss, and trail_points specify the take-profit and stop-loss levels and trailing stop activation level as tick distances from the entry price. In contrast, the absolute parameters limit, stop, and trail_price specify the exit and trail activation prices directly.In Pine v5, a strategy.exit() call containing arguments for both the relative and absolute parameters that define a price level for the same exit order always prioritizes the absolute parameter and ignores the relative one. For instance, a call that includes a limit and profit argument consistently places take-profit orders at the limit value. It never places an exit order using the profit distance.In Pine v6, if a strategy.exit() call contains arguments for related absolute and relative parameters, it evaluates both specified levels and uses the one that the market price is expected to trigger first.The example below demonstrates how the behavior of this command differs for v5 and v6 scripts. This v5 script creates a long market order and an exit order bracket on each 28th bar. The strategy.exit() call contains arguments for the relative parameters that determine take-profit and stop-loss levels (profit and loss), and it includes arguments for the absolute parameters (limit and stop). The profit and loss arguments are both 0, which would result in consistent exits at the entry price if the command used them. However, the command never uses these values to determine the exit order levels because the limit and stop parameters always take precedence when they have specified values://@version=5strategy("`strategy.exit()` with parameter pairs demo", overlay = true, margin_long = 100, margin_short = 100)//@variable The 14-bar Average True Range. float atr = ta.atr(14)if bar_index % 28 == 0 strategy.entry("Buy", strategy.long) strategy.exit("Exit", "Buy", profit = 0, limit = close + 2.0 * atr, loss = 0, stop = close - 2.0 * atr)If we. Atr Tool 2 0, free atr tool 2 0 software downloads, Page 3.Atr Tools 2 0 Freeware - Free Download Atr Tools 2 0 - WinSite
Binque6 postsmsg #145190- Ignore binque11/4/2018 4:49:03 PMATR has it's weakness. A ATR of $1 on a $20 stock is 5% where a $1 ATR on a $100 stock is 1%. Here is a filter to give you a True Average True Range (TATR)/* convert ATR to percent */set{rat1,atr(14)/high}set{ATR%,rat1*100}add column atr(14)add column ATR%atr% > 10I find this filter very helpful when determining which stocks to DAY Trade or SWING Trade.jimvin178 postsmsg #146470- Ignore jimvin2/7/2019 7:10:21 PMLooks like a nice base to build a model onThanks - jm.v.Village Elder231 postsmsg #146471- Ignore Village Eldermodified2/7/2019 7:18:29 PMTry this? RangeAverage Day Range(period)Day Point Range DescriptionThe day range returns the difference between the high and low prices of the day, represented as a percent of the closing value. For example, suppose a stock closed at 10, the high was 11 and the low was 9. The difference between the high and low is 2. Represented as a percent, the day range is: 20%. The average day range computes a simple average of the day range over a given number of days. This value is also represented as a percent of the closing price. Finally, the day point range is the actual price difference between the high and low of the day. The day point range is not converted to a percent.mahkoh1,065 postsmsg #146476- Ignore mahkohmodified2/8/2019 12:23:22 PM Edit, forgot to state the period, now set to 14. I used a similar code:set{atr1,weighted atr(20) / close}set{atr20,atr1 * 100}add column atr20until I found out SF has aComments
Intraday. If anyone has tips to make this indicator simpler, easier, and faster, I would love that. I want to add a vertical line for time, and extend my yellow horizontal line left as well to show price... Similar to the vertical drawing/horz drawing for time/price. If I could also trigger this study every time my price/time drawings cross, that would be amazing!!!Just Labels from the 2nd Script: Profit and Loss Zones: Code: # Crude Buy Sell Zone indicator by ANTHDKN 06.04.2021# Free to use to all# First posted on usethinkscript.com# Manual entries for positionsinput value = .07;input dollarvalue = 0;input buy = yes;input thyme = 0630;input min = 2; # Mins tilldef BUY_YES_SELL_NO = if buy then no else yes;def thymeOffset = 0300;def showAt = thyme + thymeoffset;def avg = dollarvalue * .01;input AreYouIn = no;# Average True Range LabelAddLabel(!AreYouIn, "ATR: " + AsDollars(ATR()), Color.YELLOW);# You are in Labeladdlabel(areyouin, "In at " + asdollars(avg), color.white);# Profit/Loss zones as multiple of ATR# Sell Sidedef targetprice03 = if !Buy_Yes_Sell_No then (avg * .01) - (value * 3) else (avg * .01) + (value * 3);def targetprice02 = if !Buy_Yes_Sell_No then (avg * .01) - (value * 2) else (avg * .01) + (value * 2);def targetprice01 = if !Buy_Yes_Sell_No then (avg * .01) - (value) else (avg * .01) + (value);#Buy Sidedef targetprice1 = if Buy_Yes_Sell_No then (avg * .01) + (value) else (avg * .01) - (value);def targetprice2 = if Buy_Yes_Sell_No then (avg * .01) + (value * 2) else (avg * .01) - (value * 2);def targetprice3 = if Buy_Yes_Sell_No then (avg * .01) + (value * 3) else (avg * .01) - (value * 3);### Linesdef showLines = if AreYouIn then (if secondstillTime(showAt) Code: # Crude Buy Sell Zone indicator by ANTHDKN 06.04.2021# Free to use to all# First posted on usethinkscript.com# Auto entries from positionsinput value = .07;def avg = getaveragePrice();def AreYouIn = if getquantity() != 0 then yes else no;def targetprice02 = (avg) - (value*2);def TargetPrice01 = (avg) - value;def TargetPrice1 = (avg) + value;def TargetPrice2 = (avg) + (value * 2);def TargetPrice3 = (avg) + (value * 3);AddLabel(AreYouIn, getquantity() + "@" + avg + "= $" + (avg * getquantity()), Color.WHITE);AddLabel(AreYouIn, if GetOpenPL() > 0 then "P/L: $" + GetOpenPL() + " [" + aspercent(getopenPL() / (avg * getquantity())) + "]" else "P/L: -$" + GetOpenPL() + " [" + aspercent(getopenPL() / (avg * getquantity())) + "]", if GetOpenPL() > 0 then Color.DARK_GREEN else Color.DARK_RED);plot downside2 = if avg != 0 then TargetPrice02 else double.nan;downside2.setstyle(curve.FIRM);downside2.setdefaultColor(color.DARK_RED);plot downside1 = if avg != 0 then TargetPrice01 else double.nan;downside1.setstyle(curve.SHORT_DASH);downside1.setdefaultColor(color.red);plot avgprice = if avg != 0 then avg else double.nan;avgprice.setstyle(curve.SHORT_DASH);avgprice.setdefaultColor(color.Yellow);plot upside1 = if avg != 0 then TargetPrice1 else double.nan;upside1.setstyle(curve.SHORT_DASH);upside1.setdefaultColor(color.light_GREEN);plot upside2 = if avg != 0 then TargetPrice2 else double.nan;upside2.setstyle(curve.SHORT_DASH);upside2.setdefaultColor(color.light_GREEN);plot upside3 = if avg != 0 then TargetPrice3 else double.nan;upside3.setstyle(curve.FIRM);upside3.setdefaultColor(color.dark_GREEN);#AddLabel(AreYouIn,# "[-" + AsPercent(value*2 / TargetPrice2) + "]" +# ":" + AsDollars(targetprice01) +# " [-" + AsPercent(value / targetprice01) + "]" +# ":" + AsDollars(TargetPrice01),# if avg Last edited by a
2025-04-06#1 Tired of flipping over to the monitor tab to see how your trade is going?Problem solved!Here are your P&L Labels For ChartsThis script provides the P/L For Accumulated TradesThe Net PnL uses a cost adjusted basis: ProfitLossMode.COST_BASISThese labels includethe total Quantity bought,Average Purchase Price per share and total,the Adjusted Average Sales Price per share and totaland the net Gain/LossYou can edit out the fields that you don't want. Ruby: # Profit & Loss Label (on a cost adjusted basis)# @merryday 2/2023input PLMode = ProfitLossMode.COST_BASIS;def PL = GetOpenPL(profitLossMode = PLMode) ;def Entry = if GetAveragePrice() != 0 then GetAveragePrice() else Entry[1];def GainLoss = if PL != 0 then PL else GainLoss[1];def Qty = if GetQuantity() != 0 then GetQuantity() else Qty[1];DefineGlobalColor("Gain", CreateColor(0, 165, 0)) ;DefineGlobalColor("Loss", CreateColor(225, 0, 0)) ;AddLabel(GainLoss,"Qty: " + Qty + " Entry/shr $" + Entry + " Exit/shr $" + (Entry+GainLoss)+ " | Total Purchase: " +Qty*Entry + " Total Sale: " +Qty*(Entry+GainLoss)+" | P/L: " + AsDollars(GainLoss*Qty), if GainLoss > 0 then GlobalColor("Gain") else GlobalColor("Loss")); Last edited: Sep 30, 2024 #2 Hello,I've put together a simple profit/loss zone indicator/study that will help with visualizing profit/loss zones. I would love to see others add/expand/improve this for automation as well as to use in range-bar setup. Here's the code, and a couple of use-cases.The process of displaying this is very crude, but it's manual. I trade on another platform for day-trading and use TOS for visualizing, so I wanted a way to see my stop zones. The way it works is you enter a profit/loss range in $ amount. I trade using ATR, so I either use 1:1 ATR for my range, or .5:1 ATR range for tighter moves. The zones can switch between buy and sell. Yellow dotted line indicates $ figure you are in at. the plot posts at a certain time, and for a duration after, which you can extend if you like. You can switch on/off by indicating if you're in. Here are the figures:Value: 00.00 # Use this to indicate the rage between your loss/take profit. If you believe $ will go up by $0.05, then type 0.05dollarvalue: 0000 # Use this to indicate your dollar value. The number will divide by 100, so 4000 = 40.00 aka $40.00Buy: yes/no #this is if you are long or short. Buy yes means long, buy no means short. Its crude but I understand it...Thyme: 0000 # Use this to indicate time. 0630 is 06:30... 834 is 08:34.. etcmin: 0 #How many minutes you expect to sit in your trade... I use 10 or so by default depending on volitilityare you in: yes/no #show the graph or not, I had it automatic with getquantity() but again I use this for charting more than trading on TOSThe zones are 1x 2x 3x and -1x -2x, I added clouds as well just to give me a better look. I would love to use this on Range bars using ATR ranges because this is how I mainly trade, priceaction
2025-04-03All ATR Products are now on sale. ATR Web Premier Source Code.File Name:ATR 1 Module Source Code Author:Xpress Software Inc.License:Commercial ($2000.00)File Size:Runs on:Windows 95, Windows NT, Windows 2000, Windows Advertisement Advertisement ATR Monitor monitors and records your computer activity and allocates it to predefined projects. ATR Monitor monitors and records your computer activity and allocates it to predefined projects. If you would like to automatically track your software applications and time spent - download ATR Monitor.File Name:atr_monitor.exe Author:Xpress Software Inc.License:Shareware ($)File Size:2.16 MbRuns on:WindowsAll ATR Products are now on sale. ATR Products Complete Source Code Library.File Name:ATR Products Complete SourceCode Library Author:Xpress Software Inc.License:Commercial ($5000.00)File Size:Runs on:Windows 95, Windows NT, Windows 2000, WindowsATR Timer helps you to track your projects and time spent with a single click . ATR Timer runs in Windows system tray and tracks your projects with 1 click - you can start, pause or stop your project just by clicking on ATR Timer icon.File Name:atr_timer.exe Author:Xpress Software Inc.License:Shareware ($19.95)File Size:3.23 MbRuns on:Win95, Win98, WinME, WinNT 4.x, WinXP, Windows2000, Windows2003ATR Billing will help you manage your most important area: money! ATR Billing will keep track of your subcontractor rates, your default client rates, even your project rates... All necessary reports will be available at your fingertips with a single. ...File Name:atr_billing.exe Author:Xpress Software IncLicense:Demo ($14.99)File Size:3.05 MbRuns on:Windows Vista, 2003, XP, 2000, 98, Me, NTAll ATR Products are now on sale! Advanced Time Reports Palm ATR Palm is a simple time tracking & project management software for Palm OS based devices. ATR Palm can be synchronized with ATR Personal or ATR Professional with just one click, so you. ...File Name:ATR Palm Author:Xpress Software Inc.License:Commercial ($29.99)File Size:Runs on:Palm OSThe Adobe Type Reunion (ATR) Deluxe 2.5 to 2.5.2 Update resolves an incompatibility with Apple Mac OS 9. The 2.5.2
2025-04-20There is simply no comparison between the 2 plugins not only because they are modeled after different tapesbut also WAVES will have to dig in a lot further even to come remotely close to the brilliant ATR 102 emulation.Please feel free to test yourself and post if you have any other opinion.Cheers and let peace prevail!!Khussh #2 Well i clearly was saved from wasting my 99 dollars thanks to the waves demo , but to me there is simply no comparison between the 2 plugins not only because they are modeled after different tapesThere was a reason why WAVES sold the MPX, whoops the Kramer Master Tape for under a 100 bucks. People were going more gaga over the low price than what kind of sounds and features it actually offered. Having already been using the UAD Studer A800 for many months before the KMT came out, I already had a solid base line for what a reel to reel tape sim should sound like and offer feature wise. Like you, the KMT never did it for me and I kept my $99, in my pocket. Now for mix bus, mastering and FX use, the ATR-102 simply blows the KMT away. I would rather have one instance of the UAD ATR-102 than a hundred of the KMT. In the end, you get what you pay for. In the case of the ATR-102, it is simply the best and most versatile reel to reel tape sim in the DAW world. In fact, I think it is the best and most detailed plug-in emulation that UA has ever done and worth every penny. Cheers,Billy Buck #3 I demo-ed the waves MPX when it first came out , so i couldn't do a direct shootout with ATR. At the time I already had
2025-04-25