%K and %D should be swapped in Stochastic RSI #1024

Blank chart when tabbing (Mac OSX) #1015
Study Template drop down error #1013
Double volume when loading study template #1012
Remove all studies breaks chart #1008
Rename Donchian Channels plot names #1006
Stochastic %K and %D should be swapped #982
Change brush tool default color #976
Send search requests with a delay #974
Unstable Version - Info indicator top right + event bubble #962
Compress language json #961
Intermittent issue loading complex charts #956
Label "closed" when market should be open #942
Pitchfork plots visibilities are not saved (unstable) #938
Unable to get 'Symbol Info '  option in chart... #936
Add more colors to the bar marks #914
custom_css_url doesn't work #912
Fibonacci retracements' custom levels not being saved #911
Volume added to mutichart layout even if not supported by a symbol #910
Marks are not requested in unstable 1.5 #909
Chart x-axis does not correctly reflect the data when market hours differ from normal #886
Position Line only visible on the top panel #880
Uncaught incorrect identifiers #871
Delete study template confirm message is not available to translate #863
Name escaped incorrectly on templates API call #855
MACD does not show all 3 lines as per the MACD theory #854
unstable: Cannot load chart with Moving Average Convergence/Divergence #853
Chart doesn't load after refreshing if saving with lock scale  #852
Problem with left_toolbar disabled feature #851
XSS vulnerability in demo code #847
Delay in firing onAutoSaveNeeded #846
Loading chart with the same symbol leads to request more and more data #841
Display timezones offset #838
Fetching bars with wrong local date #837
Screenshot dialog appearing #836
Source of Moving averages + MACD #828
Unable to set some style options on studies #798
Timescale marks displayed incorrectly when zoom in/out of chart #796
Volume is recreated when scrolling chart #792
Always show the last tick on the axis #780
Snapshot dialog copy button background is not fully filled #769
True Strength Indicator only shows short length #758
Create an event for crosshair moving #735
Loading chart Layout #720
Remove symbol compare #694
Advanced settings for Moving Average #676
Limit number of studies in the chart #649
Disable timezone #647
Critical bug | Drawing Objects in the empty space in front of the chart #562
Make chart do not request external resources #421
This commit is contained in:
Jenkins
2016-04-01 05:34:58 -05:00
parent f93b9bd49f
commit c242bf7430
36 changed files with 2496 additions and 73603 deletions

View File

@@ -263,7 +263,7 @@
})
.append($('<span>get range</span>'));
var position = widget.createPositionLine()
var position = widget.chart().createPositionLine()
.onReverse(function(text) {
console.log("Position reverse event");
})
@@ -275,7 +275,7 @@
.setLineLength(3);
position.setPrice(position.getPrice() - 2);
var order = widget.createOrderLine()
var order = widget.chart().createOrderLine()
.onMove(function() {
console.log("Order moved event");
})
@@ -287,7 +287,7 @@
.setQuantity("2");
order.setPrice(order.getPrice() - 2.5);
widget.createExecutionShape()
widget.chart().createExecutionShape()
.setText("@1,320.75 Limit Buy 1")
.setTextColor("rgba(255,0,0,0.5)")
.setArrowSpacing(25)
@@ -302,7 +302,7 @@
// draw some simple technical analysis figures using drawings to show how it works
getMinAndMaxPrice(udf_datafeed, fourMonthAgo, today,
function(minPrice, maxPrice, minPriceTime, maxPriceTime) {
widget.createMultipointShape(
widget.chart().createMultipointShape(
[{time:fourMonthAgo, price: minPrice}, {time:today, price: minPrice}],
{
shape: "trend_line",
@@ -318,7 +318,7 @@
}
}
);
widget.createShape({time: Math.floor((fourMonthAgo + today) / 2), price: minPrice},
widget.chart().createShape({time: Math.floor((fourMonthAgo + today) / 2), price: minPrice},
{
shape: "text",
lock: true,
@@ -328,7 +328,7 @@
text: "3 month low at " + minPrice,
overrides: { color: "#00FF00" }
});
widget.createMultipointShape(
widget.chart().createMultipointShape(
[{time:fourMonthAgo, price: maxPrice}, {time:today, price: maxPrice}],
{
shape: "trend_line",
@@ -344,7 +344,7 @@
}
}
);
widget.createShape({time: Math.floor((fourMonthAgo + today) / 2), price: maxPrice},
widget.chart().createShape({time: Math.floor((fourMonthAgo + today) / 2), price: maxPrice},
{
shape: "text",
lock: true,
@@ -354,7 +354,7 @@
text: "3 month high at " + maxPrice,
overrides: { color: "#FF0000" }
});
widget.createMultipointShape(
widget.chart().createMultipointShape(
[{time:maxPriceTime, price: maxPrice}, {time:minPriceTime, price: minPrice}],
{
shape: "trend_line",
@@ -369,7 +369,7 @@
}
}
);
widget.createMultipointShape(
widget.chart().createMultipointShape(
[{time: Math.floor((maxPriceTime + minPriceTime) / 2), price: (maxPrice + minPrice) / 2},
{time: Math.floor((maxPriceTime + minPriceTime) / 2) + 5 * 24 * 60 * 60, price: (maxPrice + minPrice) / 2 * 1.1}],
{