-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deriv_localizations): add indicator strings (#679)
Co-authored-by: ramin-deriv <[email protected]>
- Loading branch information
1 parent
2a0cb5b
commit 76e75cf
Showing
1 changed file
with
81 additions
and
1 deletion.
There are no files selected for viewing
82 changes: 81 additions & 1 deletion
82
packages/deriv_localizations/lib/l10n/deriv_mobile_chart_wrapper/app_en.arb
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,83 @@ | ||
{ | ||
"labelIndicators": "Indicators" | ||
"labelIndicators": "Indicators", | ||
"labelActive": "Active", | ||
"labelAll": "All", | ||
"labelMomentum": "Momentum", | ||
"labelVolatility": "Volatility", | ||
"labelMovingAverages": "Moving averages", | ||
"labelMACD": "MACD", | ||
"labelRelativeStrengthIndex": "Relative Strength Index (RSI)", | ||
"labelRSI": "RSI", | ||
"labelBollingerBands": "Bollinger Bands (BB)", | ||
"labelBB": "BB", | ||
"labelMovingAverage": "Moving Average (MA)", | ||
"labelMA": "MA", | ||
"infoMACD": "MACD is a trading indicator used in technical analysis of stock prices. It is supposed to reveal changes in the strength, direction, momentum, and duration of a trend in a stock's price.", | ||
"infoRSI": "The Relative Strength Index (RSI) was published by J. Welles Wilder. The current price is normalized as a percentage between 0 and 100. The flutter_chart_id of this oscillator is misleading because it does not compare the instrument relative to another instrument or set of instruments, but rather represents the current price relative to other recent pieces within the selected lookback window length.", | ||
"infoBB": "Bollinger Bands (BB) can be used to measure the highness or lowness of the price relative to previous trades.", | ||
"infoMA": "The Moving Average (MA) helps to identify the overall market trend by filtering out short-term price fluctuations. Using historical data, it calculates the average price over a specific period and plots a line on the chart. If the MA line moves upwards, it’s an indicator of an uptrend, a downtrend if it moves downwards. A buy signal occurs when the price moves above the MA line.", | ||
"infoMaximumActiveIndicatorsAdded": "You've added the maximum number of active indicators.", | ||
"infoAddSelectedIndicator": "Add {indicator}", | ||
"infoAddIndicator": "Add indicator", | ||
"labelDeleteAllIndicators": "Delete all indicators", | ||
"infoDeleteAllIndicators": "This will delete all active indicators.", | ||
"labelDeleteIndicator": "Delete {indicator} indicator", | ||
"infoDeleteIndicator": "Are you sure you want to delete this indicator?", | ||
"labelCancel": "Cancel", | ||
"labelDelete": "Delete", | ||
"labelDeleteAll": "Delete All", | ||
"infoUpto3indicatorsAllowed": "Up to 3 active indicators allowed.", | ||
"infoNoActiveIndicators": "You have no active indicators yet.", | ||
"labelReset": "Reset", | ||
"labelApply": "Apply", | ||
"labelOK": "OK", | ||
"labelRSILine": "RSI line", | ||
"labelPeriod": "Period", | ||
"labelMinRange": "Min range", | ||
"labelMaxRange": "Max range", | ||
"labelSource": "Source", | ||
"labelClose": "Close", | ||
"labelOpen": "Open", | ||
"labelHigh": "High", | ||
"labelLow": "Low", | ||
"labelHl/2": "Hl/2", | ||
"labelHlc/3": "Hlc/3", | ||
"labelHlcc/4": "Hlcc/4", | ||
"labelOhlc/4": "Ohlc/4", | ||
"labelShowZones": "Show Zones", | ||
"labelOverbought": "Overbought", | ||
"labelOversold": "Oversold", | ||
"labelMinSize": "Min size", | ||
"labelMaxSize": "Max size", | ||
"labelRange": "Range", | ||
"labelOverboughtLine": "Overbought line", | ||
"labelOversoldLine": "Oversold line", | ||
"labelMACDLine": "MACD line", | ||
"labelFastMAPeriod": "Fast MA period", | ||
"labelSlowMAPeriod": "Slow MA period", | ||
"labelSignalLine": "Signal line", | ||
"labelSignalPeriod": "Signal period", | ||
"labelIncreasingBar": "Increasing bar", | ||
"labelDecreasingBar": "Decreasing bar", | ||
"labelBollingerBandsTop": "Bollinger Bands top", | ||
"labelBollingerBandsMedian": "Bollinger Bands median", | ||
"labelBollingerBandsBottom": "Bollinger Bands bottom", | ||
"labelChannelFill": "Channel fill", | ||
"labelFillColor": "Fill color", | ||
"labelStandardDeviations": "Standard deviations", | ||
"labelMovingAverageType": "Moving Average Type", | ||
"labelMALine": "MA line", | ||
"labelOffset": "Offset", | ||
"labelType": "Type", | ||
"labelSimple": "Simple", | ||
"labelExponential": "Exponential", | ||
"labelWeighted": "Weighted", | ||
"labelHull": "Hull", | ||
"labelZeroLag": "Zero Lag", | ||
"labelTimeSeries": "Time Series", | ||
"labelWellesWilder": "Welles Wilder", | ||
"labelVariable": "Variable", | ||
"labelTriangular": "Triangular", | ||
"label2Exponential": "2-Exponential", | ||
"label3Exponential": "3-Exponential" | ||
} |