Skip to content

Commit bd5cf79

Browse files
Add trading_beta
1 parent b4a5b25 commit bd5cf79

File tree

14 files changed

+80
-7
lines changed

14 files changed

+80
-7
lines changed

src/javascript/binary/websocket_pages/trade/beta/analysis.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,3 +236,7 @@ var TradingAnalysis_Beta = (function() {
236236
};
237237

238238
})();
239+
240+
module.exports = {
241+
TradingAnalysis_Beta: TradingAnalysis_Beta,
242+
};

src/javascript/binary/websocket_pages/trade/beta/barriers.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,3 +163,7 @@ var Barriers_Beta = (function () {
163163
validateBarrier: validateBarrier
164164
};
165165
})();
166+
167+
module.exports = {
168+
Barriers_Beta: Barriers_Beta,
169+
};

src/javascript/binary/websocket_pages/trade/beta/contract.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,3 +192,7 @@ var Contract_Beta = (function() {
192192
};
193193

194194
})();
195+
196+
module.exports = {
197+
Contract_Beta: Contract_Beta,
198+
};

src/javascript/binary/websocket_pages/trade/beta/duration.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,3 +393,7 @@ var Durations_Beta = (function(){
393393
validateMinDurationAmount: validateMinDurationAmount
394394
};
395395
})();
396+
397+
module.exports = {
398+
Durations_Beta: Durations_Beta,
399+
};

src/javascript/binary/websocket_pages/trade/beta/event.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,3 +530,7 @@ var TradingEvents_Beta = (function () {
530530
onDurationUnitChange: onDurationUnitChange
531531
};
532532
})();
533+
534+
module.exports = {
535+
TradingEvents_Beta: TradingEvents_Beta,
536+
};

src/javascript/binary/websocket_pages/trade/beta/message.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,7 @@ var Message_Beta = (function () {
7070
};
7171

7272
})();
73+
74+
module.exports = {
75+
Message_Beta: Message_Beta,
76+
};

src/javascript/binary/websocket_pages/trade/beta/price.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,3 +279,7 @@ var Price_Beta = (function() {
279279
};
280280

281281
})();
282+
283+
module.exports = {
284+
Price_Beta: Price_Beta,
285+
};

src/javascript/binary/websocket_pages/trade/beta/process.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,3 +362,18 @@ function processTradingTimes_Beta(response) {
362362

363363
processPriceRequest_Beta();
364364
}
365+
366+
module.exports = {
367+
processActiveSymbols_Beta: processActiveSymbols_Beta,
368+
processMarket_Beta: processMarket_Beta,
369+
processContract_Beta: processContract_Beta,
370+
processContractForm_Beta: processContractForm_Beta,
371+
forgetTradingStreams_Beta: forgetTradingStreams_Beta,
372+
processForgetProposals_Beta: processForgetProposals_Beta,
373+
processPriceRequest_Beta: processPriceRequest_Beta,
374+
processForgetTicks_Beta: processForgetTicks_Beta,
375+
processTick_Beta: processTick_Beta,
376+
processProposal_Beta: processProposal_Beta,
377+
processTradingTimesRequest_Beta: processTradingTimesRequest_Beta,
378+
processTradingTimes_Beta: processTradingTimes_Beta,
379+
};

src/javascript/binary/websocket_pages/trade/beta/purchase.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,3 +274,7 @@ var Purchase_Beta = (function () {
274274
};
275275

276276
})();
277+
278+
module.exports = {
279+
Purchase_Beta: Purchase_Beta,
280+
};

src/javascript/binary/websocket_pages/trade/beta/starttime.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,7 @@ var StartDates_Beta = (function(){
116116
};
117117

118118
})();
119+
120+
module.exports = {
121+
StartDates_Beta: StartDates_Beta,
122+
};

src/javascript/binary/websocket_pages/trade/beta/tick_trade.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,3 +501,7 @@ WSTickDisplay_Beta.updateChart = function(data, contract) {
501501
}
502502
});
503503
}(Highcharts));
504+
505+
module.exports = {
506+
WSTickDisplay_Beta: WSTickDisplay_Beta,
507+
};

src/javascript/binary/websocket_pages/trade/beta/tradepage.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,7 @@ var TradePage_Beta = (function(){
7171
is_trading_page: function(){return trading_page;}
7272
};
7373
})();
74+
75+
module.exports = {
76+
TradePage_Beta: TradePage_Beta,
77+
};

src/javascript/binary/websocket_pages/trade/common.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1138,11 +1138,11 @@ module.exports = {
11381138
chartFrameSource: chartFrameSource,
11391139
displayContractForms: displayContractForms,
11401140
displayMarkets: displayMarkets,
1141-
toggleActiveNavMenuElement_Beta: toggleActiveNavMenuElement_Beta
1142-
setFormPlaceholderContent_Beta: setFormPlaceholderContent_Beta
1143-
updatePurchaseStatus_Beta: updatePurchaseStatus_Beta
1144-
displayTooltip_Beta: displayTooltip_Beta
1145-
label_value: label_value
1146-
adjustAnalysisColumnHeight: adjustAnalysisColumnHeight
1147-
moreTabsHandler: moreTabsHandler
1141+
toggleActiveNavMenuElement_Beta: toggleActiveNavMenuElement_Beta,
1142+
setFormPlaceholderContent_Beta: setFormPlaceholderContent_Beta,
1143+
updatePurchaseStatus_Beta: updatePurchaseStatus_Beta,
1144+
displayTooltip_Beta: displayTooltip_Beta,
1145+
label_value: label_value,
1146+
adjustAnalysisColumnHeight: adjustAnalysisColumnHeight,
1147+
moreTabsHandler: moreTabsHandler,
11481148
};

src/javascript/index.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ window.Cookies = require('./lib/js-cookie.js');
2525
require('./lib/loadCSS.js');
2626
require('./lib/loadJS.js');
2727
window.pjax = require('./lib/pjax-lib.js');
28+
require('./lib/resize-sensor.js');
2829
window.dv = require('./lib/validation.js');
2930

3031
require('./binary/components/trackjs_onerror');
@@ -108,6 +109,19 @@ exportAllFunctions(require('./binary/websocket_pages/trade/symbols'));
108109
exportAllFunctions(require('./binary/websocket_pages/trade/tick'));
109110
exportAllFunctions(require('./binary/websocket_pages/trade/tick_trade'));
110111
exportAllFunctions(require('./binary/websocket_pages/trade/tradepage'));
112+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/analysis'));
113+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/barriers'));
114+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/charts/digit_infows'));
115+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/contract'));
116+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/duration'));
117+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/event'));
118+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/message'));
119+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/price'));
120+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/process'));
121+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/purchase'));
122+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/starttime'));
123+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/tick_trade'));
124+
exportAllFunctions(require('./binary/websocket_pages/trade/beta/tradepage'));
111125
exportAllFunctions(require('./binary/websocket_pages/user/account/authenticate'));
112126
exportAllFunctions(require('./binary/websocket_pages/user/account/change_password'));
113127
exportAllFunctions(require('./binary/websocket_pages/user/account/payment_agent_transfer/payment_agent_transfer.data'));

0 commit comments

Comments
 (0)