From f2cb93e17c988ea414e965bb1d64b94a2a4ef2c5 Mon Sep 17 00:00:00 2001 From: Benny Neugebauer Date: Mon, 14 Aug 2023 10:59:21 +0200 Subject: [PATCH] docs: Updated API --- docs/assets/highlight.css | 78 + docs/assets/main.js | 58 + docs/assets/search.js | 1 + docs/assets/style.css | 1367 +++++++++++++++++ docs/classes/APIClient.html | 207 +++ docs/classes/AccountAPI.html | 238 +++ docs/classes/DealingAPI.html | 384 +++++ docs/classes/LoginAPI.html | 357 +++++ docs/classes/MarketAPI.html | 270 ++++ docs/classes/PriceAPI.html | 270 ++++ docs/enums/AccountStatus.html | 159 ++ docs/enums/AccountType.html | 159 ++ docs/enums/ActionType.html | 264 ++++ docs/enums/ActivityStatus.html | 159 ++ docs/enums/ActivityType.html | 166 ++ docs/enums/AffectedDealStatus.html | 173 +++ docs/enums/Channel.html | 180 +++ docs/enums/DealStatus.html | 152 ++ docs/enums/Direction.html | 152 ++ docs/enums/InstrumentType.html | 257 ++++ docs/enums/InstrumentUnit.html | 159 ++ docs/enums/MarketOrderPreference.html | 159 ++ docs/enums/MarketStatus.html | 187 +++ docs/enums/OrderTimeInForce.html | 152 ++ docs/enums/OrderType.html | 152 ++ docs/enums/PositionOrderType.html | 159 ++ docs/enums/PositionTimeInForce.html | 152 ++ docs/enums/Resolution.html | 243 +++ docs/enums/ResolutionInMillis.html | 243 +++ docs/enums/Status.html | 173 +++ docs/enums/TrailingStopPreference.html | 152 ++ docs/enums/TransactionType.html | 166 ++ docs/index.html | 247 +++ docs/interfaces/Account.html | 212 +++ docs/interfaces/AccountsResponse.html | 149 ++ docs/interfaces/Action.html | 156 ++ docs/interfaces/Activity.html | 205 +++ docs/interfaces/ActivityHistoryRequest.html | 184 +++ docs/interfaces/ActivityHistoryResponse.html | 156 ++ docs/interfaces/ActivityMetadata.html | 149 ++ docs/interfaces/ActivityPaging.html | 156 ++ docs/interfaces/AffectedDeal.html | 156 ++ docs/interfaces/Balance.html | 170 ++ docs/interfaces/BidAsk.html | 163 ++ docs/interfaces/CandleStick.html | 191 +++ docs/interfaces/Currency.html | 177 +++ docs/interfaces/DealConfirmation.html | 282 ++++ docs/interfaces/DealReferenceResponse.html | 149 ++ docs/interfaces/DealingRules.html | 191 +++ docs/interfaces/Details.html | 247 +++ docs/interfaces/ExpiryDetail.html | 156 ++ .../interfaces/HistoricalPricesAllowance.html | 163 ++ docs/interfaces/HistoricalPricesMetadata.html | 163 ++ .../HistoricalPricesPagination.html | 163 ++ docs/interfaces/HistoricalPricesResponse.html | 163 ++ docs/interfaces/Instrument.html | 356 +++++ docs/interfaces/LimitedRiskPremium.html | 156 ++ docs/interfaces/MarginDepositBand.html | 170 ++ docs/interfaces/Market.html | 254 +++ docs/interfaces/MarketDetail.html | 163 ++ docs/interfaces/MarketNavigation.html | 156 ++ docs/interfaces/MarketNode.html | 156 ++ docs/interfaces/MarketSearch.html | 149 ++ docs/interfaces/MaxStopOrLimitDistance.html | 156 ++ .../MinControlledRiskStopDistance.html | 156 ++ docs/interfaces/MinDealSize.html | 156 ++ .../MinNormalStopOrLimitDistance.html | 156 ++ docs/interfaces/MinStepDistance.html | 156 ++ docs/interfaces/OauthToken.html | 177 +++ docs/interfaces/Order.html | 254 +++ docs/interfaces/OrderCreateRequest.html | 247 +++ docs/interfaces/OrderListResponse.html | 149 ++ docs/interfaces/OrderResponse.html | 156 ++ docs/interfaces/OrderUpdateRequest.html | 198 +++ docs/interfaces/Position.html | 240 +++ docs/interfaces/PositionCloseRequest.html | 205 +++ docs/interfaces/PositionCreateRequest.html | 247 +++ docs/interfaces/PositionListResponse.html | 149 ++ docs/interfaces/PositionResponse.html | 156 ++ docs/interfaces/PositionUpdateRequest.html | 177 +++ docs/interfaces/RolloverDetail.html | 156 ++ docs/interfaces/SlippageFactor.html | 156 ++ docs/interfaces/Snapshot.html | 233 +++ docs/interfaces/SwitchAccountResponse.html | 170 ++ docs/interfaces/TradingSession.html | 177 +++ docs/interfaces/Transaction.html | 233 +++ .../interfaces/TransactionHistoryRequest.html | 184 +++ .../TransactionHistoryResponse.html | 156 ++ docs/interfaces/TransactionMetadata.html | 156 ++ docs/interfaces/TransactionPaging.html | 163 ++ docs/modules.html | 235 +++ docs/types/MarketDetails.html | 130 ++ 92 files changed, 18140 insertions(+) create mode 100644 docs/assets/highlight.css create mode 100644 docs/assets/main.js create mode 100644 docs/assets/search.js create mode 100644 docs/assets/style.css create mode 100644 docs/classes/APIClient.html create mode 100644 docs/classes/AccountAPI.html create mode 100644 docs/classes/DealingAPI.html create mode 100644 docs/classes/LoginAPI.html create mode 100644 docs/classes/MarketAPI.html create mode 100644 docs/classes/PriceAPI.html create mode 100644 docs/enums/AccountStatus.html create mode 100644 docs/enums/AccountType.html create mode 100644 docs/enums/ActionType.html create mode 100644 docs/enums/ActivityStatus.html create mode 100644 docs/enums/ActivityType.html create mode 100644 docs/enums/AffectedDealStatus.html create mode 100644 docs/enums/Channel.html create mode 100644 docs/enums/DealStatus.html create mode 100644 docs/enums/Direction.html create mode 100644 docs/enums/InstrumentType.html create mode 100644 docs/enums/InstrumentUnit.html create mode 100644 docs/enums/MarketOrderPreference.html create mode 100644 docs/enums/MarketStatus.html create mode 100644 docs/enums/OrderTimeInForce.html create mode 100644 docs/enums/OrderType.html create mode 100644 docs/enums/PositionOrderType.html create mode 100644 docs/enums/PositionTimeInForce.html create mode 100644 docs/enums/Resolution.html create mode 100644 docs/enums/ResolutionInMillis.html create mode 100644 docs/enums/Status.html create mode 100644 docs/enums/TrailingStopPreference.html create mode 100644 docs/enums/TransactionType.html create mode 100644 docs/index.html create mode 100644 docs/interfaces/Account.html create mode 100644 docs/interfaces/AccountsResponse.html create mode 100644 docs/interfaces/Action.html create mode 100644 docs/interfaces/Activity.html create mode 100644 docs/interfaces/ActivityHistoryRequest.html create mode 100644 docs/interfaces/ActivityHistoryResponse.html create mode 100644 docs/interfaces/ActivityMetadata.html create mode 100644 docs/interfaces/ActivityPaging.html create mode 100644 docs/interfaces/AffectedDeal.html create mode 100644 docs/interfaces/Balance.html create mode 100644 docs/interfaces/BidAsk.html create mode 100644 docs/interfaces/CandleStick.html create mode 100644 docs/interfaces/Currency.html create mode 100644 docs/interfaces/DealConfirmation.html create mode 100644 docs/interfaces/DealReferenceResponse.html create mode 100644 docs/interfaces/DealingRules.html create mode 100644 docs/interfaces/Details.html create mode 100644 docs/interfaces/ExpiryDetail.html create mode 100644 docs/interfaces/HistoricalPricesAllowance.html create mode 100644 docs/interfaces/HistoricalPricesMetadata.html create mode 100644 docs/interfaces/HistoricalPricesPagination.html create mode 100644 docs/interfaces/HistoricalPricesResponse.html create mode 100644 docs/interfaces/Instrument.html create mode 100644 docs/interfaces/LimitedRiskPremium.html create mode 100644 docs/interfaces/MarginDepositBand.html create mode 100644 docs/interfaces/Market.html create mode 100644 docs/interfaces/MarketDetail.html create mode 100644 docs/interfaces/MarketNavigation.html create mode 100644 docs/interfaces/MarketNode.html create mode 100644 docs/interfaces/MarketSearch.html create mode 100644 docs/interfaces/MaxStopOrLimitDistance.html create mode 100644 docs/interfaces/MinControlledRiskStopDistance.html create mode 100644 docs/interfaces/MinDealSize.html create mode 100644 docs/interfaces/MinNormalStopOrLimitDistance.html create mode 100644 docs/interfaces/MinStepDistance.html create mode 100644 docs/interfaces/OauthToken.html create mode 100644 docs/interfaces/Order.html create mode 100644 docs/interfaces/OrderCreateRequest.html create mode 100644 docs/interfaces/OrderListResponse.html create mode 100644 docs/interfaces/OrderResponse.html create mode 100644 docs/interfaces/OrderUpdateRequest.html create mode 100644 docs/interfaces/Position.html create mode 100644 docs/interfaces/PositionCloseRequest.html create mode 100644 docs/interfaces/PositionCreateRequest.html create mode 100644 docs/interfaces/PositionListResponse.html create mode 100644 docs/interfaces/PositionResponse.html create mode 100644 docs/interfaces/PositionUpdateRequest.html create mode 100644 docs/interfaces/RolloverDetail.html create mode 100644 docs/interfaces/SlippageFactor.html create mode 100644 docs/interfaces/Snapshot.html create mode 100644 docs/interfaces/SwitchAccountResponse.html create mode 100644 docs/interfaces/TradingSession.html create mode 100644 docs/interfaces/Transaction.html create mode 100644 docs/interfaces/TransactionHistoryRequest.html create mode 100644 docs/interfaces/TransactionHistoryResponse.html create mode 100644 docs/interfaces/TransactionMetadata.html create mode 100644 docs/interfaces/TransactionPaging.html create mode 100644 docs/modules.html create mode 100644 docs/types/MarketDetails.html diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css new file mode 100644 index 00000000..0d6bf825 --- /dev/null +++ b/docs/assets/highlight.css @@ -0,0 +1,78 @@ +:root { + --light-hl-0: #795E26; + --dark-hl-0: #DCDCAA; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #A31515; + --dark-hl-2: #CE9178; + --light-hl-3: #AF00DB; + --dark-hl-3: #C586C0; + --light-hl-4: #001080; + --dark-hl-4: #9CDCFE; + --light-hl-5: #0000FF; + --dark-hl-5: #569CD6; + --light-hl-6: #0070C1; + --dark-hl-6: #4FC1FF; + --light-hl-7: #000000FF; + --dark-hl-7: #D4D4D4; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --code-background: var(--dark-code-background); +} } + +:root[data-theme='light'] { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --code-background: var(--light-code-background); +} + +:root[data-theme='dark'] { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +pre, code { background: var(--code-background); } diff --git a/docs/assets/main.js b/docs/assets/main.js new file mode 100644 index 00000000..4c8fa615 --- /dev/null +++ b/docs/assets/main.js @@ -0,0 +1,58 @@ +"use strict"; +"use strict";(()=>{var Se=Object.create;var re=Object.defineProperty;var we=Object.getOwnPropertyDescriptor;var Te=Object.getOwnPropertyNames;var ke=Object.getPrototypeOf,Qe=Object.prototype.hasOwnProperty;var Pe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Ie=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Te(e))!Qe.call(t,i)&&i!==r&&re(t,i,{get:()=>e[i],enumerable:!(n=we(e,i))||n.enumerable});return t};var Ce=(t,e,r)=>(r=t!=null?Se(ke(t)):{},Ie(e||!t||!t.__esModule?re(r,"default",{value:t,enumerable:!0}):r,t));var ae=Pe((se,oe)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var d=t.utils.clone(r)||{};d.position=[a,u],d.index=s.length,s.push(new t.Token(n.slice(a,o),d))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ol?d+=2:a==l&&(r+=n[u+1]*i[d+1],u+=2,d+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),m=s.str.charAt(1),y;m in s.node.edges?y=s.node.edges[m]:(y=new t.TokenSet,s.node.edges[m]=y),s.str.length==1&&(y.final=!0),i.push({node:y,editsRemaining:s.editsRemaining-1,str:d+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),l=0;l1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof se=="object"?oe.exports=r():e.lunr=r()}(this,function(){return t})})()});var ne=[];function G(t,e){ne.push({selector:e,constructor:t})}var U=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureActivePageVisible(),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible())}createComponents(e){ne.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n,app:this}),n.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),r=e?.parentElement;for(;r&&!r.classList.contains(".tsd-navigation");)r instanceof HTMLDetailsElement&&(r.open=!0),r=r.parentElement;if(e){let n=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=n}}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let r=e.parentElement;for(;r&&r.tagName!=="SECTION";)r=r.parentElement;if(r&&r.offsetParent==null){this.alwaysVisibleMember=r,r.classList.add("always-visible");let n=document.createElement("p");n.classList.add("warning"),n.textContent="This member is normally hidden due to your filter settings.",r.prepend(n)}}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let r;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent="Copied!",e.classList.add("visible"),clearTimeout(r),r=setTimeout(()=>{e.classList.remove("visible"),r=setTimeout(()=>{e.textContent="Copy"},100)},1e3)})})}};var ie=(t,e=100)=>{let r;return()=>{clearTimeout(r),r=setTimeout(()=>t(),e)}};var ce=Ce(ae());function de(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("tsd-search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Oe(t,n,r,s)}function Oe(t,e,r,n){r.addEventListener("input",ie(()=>{Re(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Fe(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?ue(e,-1):s.key==="ArrowDown"?ue(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function _e(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=ce.Index.load(window.searchData.index))}function Re(t,e,r,n){if(_e(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=i?n.index.search(`*${i}*`):[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o${le(l.parent,i)}.${u}`);let d=document.createElement("li");d.classList.value=l.classes??"";let m=document.createElement("a");m.href=n.base+l.url,m.innerHTML=u,d.append(m),e.appendChild(d)}}function ue(t,e){let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let n=r;if(e===1)do n=n.nextElementSibling??void 0;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling??void 0;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function Fe(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function le(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(K(t.substring(s,o)),`${K(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(K(t.substring(s))),i.join("")}var Me={"&":"&","<":"<",">":">","'":"'",'"':"""};function K(t){return t.replace(/[&<>"'"]/g,e=>Me[e])}var P=class{constructor(e){this.el=e.el,this.app=e.app}};var M="mousedown",fe="mousemove",N="mouseup",J={x:0,y:0},he=!1,ee=!1,De=!1,D=!1,pe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(pe?"is-mobile":"not-mobile");pe&&"ontouchstart"in document.documentElement&&(De=!0,M="touchstart",fe="touchmove",N="touchend");document.addEventListener(M,t=>{ee=!0,D=!1;let e=M=="touchstart"?t.targetTouches[0]:t;J.y=e.pageY||0,J.x=e.pageX||0});document.addEventListener(fe,t=>{if(ee&&!D){let e=M=="touchstart"?t.targetTouches[0]:t,r=J.x-(e.pageX||0),n=J.y-(e.pageY||0);D=Math.sqrt(r*r+n*n)>10}});document.addEventListener(N,()=>{ee=!1});document.addEventListener("click",t=>{he&&(t.preventDefault(),t.stopImmediatePropagation(),he=!1)});var X=class extends P{constructor(r){super(r);this.className=this.el.dataset.toggle||"",this.el.addEventListener(N,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(M,n=>this.onDocumentPointerDown(n)),document.addEventListener(N,n=>this.onDocumentPointerUp(n))}setActive(r){if(this.active==r)return;this.active=r,document.documentElement.classList.toggle("has-"+this.className,r),this.el.classList.toggle("active",r);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(r){D||(this.setActive(!0),r.preventDefault())}onDocumentPointerDown(r){if(this.active){if(r.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(r){if(!D&&this.active&&r.target.closest(".col-sidebar")){let n=r.target.closest("a");if(n){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substring(0,i.indexOf("#"))),n.href.substring(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var te;try{te=localStorage}catch{te={getItem(){return null},setItem(){}}}var Q=te;var me=document.head.appendChild(document.createElement("style"));me.dataset.for="filters";var Y=class extends P{constructor(r){super(r);this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),me.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`}fromLocalStorage(){let r=Q.getItem(this.key);return r?r==="true":this.el.checked}setLocalStorage(r){Q.setItem(this.key,r.toString()),this.value=r,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let n=Array.from(r.querySelectorAll(".tsd-index-link")).every(i=>i.offsetParent==null);r.style.display=n?"none":"block"})}};var Z=class extends P{constructor(r){super(r);this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.dataset.key??this.summary.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`;let n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update()),this.update()}update(){this.icon.style.transform=`rotate(${this.el.open?0:-90}deg)`,Q.setItem(this.key,this.el.open.toString())}};function ve(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,ye(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),ye(t.value)})}function ye(t){document.documentElement.dataset.theme=t}de();G(X,"a[data-toggle]");G(Z,".tsd-index-accordion");G(Y,".tsd-filter-item input[type=checkbox]");var ge=document.getElementById("tsd-theme");ge&&ve(ge);var Ae=new U;Object.defineProperty(window,"app",{value:Ae});document.querySelectorAll("summary a").forEach(t=>{t.addEventListener("click",()=>{location.assign(t.href)})});})(); +/*! Bundled license information: + +lunr/lunr.js: + (** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + *) + (*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + *) + (*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + *) +*/ diff --git a/docs/assets/search.js b/docs/assets/search.js new file mode 100644 index 00000000..5cd68771 --- /dev/null +++ b/docs/assets/search.js @@ -0,0 +1 @@ +window.searchData = JSON.parse("{\"rows\":[{\"kind\":128,\"name\":\"APIClient\",\"url\":\"classes/APIClient.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"URL_DEMO\",\"url\":\"classes/APIClient.html#URL_DEMO\",\"classes\":\"\",\"parent\":\"APIClient\"},{\"kind\":1024,\"name\":\"URL_LIVE\",\"url\":\"classes/APIClient.html#URL_LIVE\",\"classes\":\"\",\"parent\":\"APIClient\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/APIClient.html#constructor\",\"classes\":\"\",\"parent\":\"APIClient\"},{\"kind\":1024,\"name\":\"rest\",\"url\":\"classes/APIClient.html#rest\",\"classes\":\"\",\"parent\":\"APIClient\"},{\"kind\":1024,\"name\":\"stream\",\"url\":\"classes/APIClient.html#stream\",\"classes\":\"\",\"parent\":\"APIClient\"},{\"kind\":262144,\"name\":\"isLive\",\"url\":\"classes/APIClient.html#isLive\",\"classes\":\"\",\"parent\":\"APIClient\"},{\"kind\":8,\"name\":\"AccountStatus\",\"url\":\"enums/AccountStatus.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"DISABLED\",\"url\":\"enums/AccountStatus.html#DISABLED\",\"classes\":\"\",\"parent\":\"AccountStatus\"},{\"kind\":16,\"name\":\"ENABLED\",\"url\":\"enums/AccountStatus.html#ENABLED\",\"classes\":\"\",\"parent\":\"AccountStatus\"},{\"kind\":16,\"name\":\"SUSPENDED_FROM_DEALING\",\"url\":\"enums/AccountStatus.html#SUSPENDED_FROM_DEALING\",\"classes\":\"\",\"parent\":\"AccountStatus\"},{\"kind\":8,\"name\":\"AccountType\",\"url\":\"enums/AccountType.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"CFD\",\"url\":\"enums/AccountType.html#CFD\",\"classes\":\"\",\"parent\":\"AccountType\"},{\"kind\":16,\"name\":\"PHYSICAL\",\"url\":\"enums/AccountType.html#PHYSICAL\",\"classes\":\"\",\"parent\":\"AccountType\"},{\"kind\":16,\"name\":\"SPREADBET\",\"url\":\"enums/AccountType.html#SPREADBET\",\"classes\":\"\",\"parent\":\"AccountType\"},{\"kind\":8,\"name\":\"TransactionType\",\"url\":\"enums/TransactionType.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"ALL\",\"url\":\"enums/TransactionType.html#ALL\",\"classes\":\"\",\"parent\":\"TransactionType\"},{\"kind\":16,\"name\":\"ALL_DEAL\",\"url\":\"enums/TransactionType.html#ALL_DEAL\",\"classes\":\"\",\"parent\":\"TransactionType\"},{\"kind\":16,\"name\":\"DEPOSIT\",\"url\":\"enums/TransactionType.html#DEPOSIT\",\"classes\":\"\",\"parent\":\"TransactionType\"},{\"kind\":16,\"name\":\"WITHDRAWAL\",\"url\":\"enums/TransactionType.html#WITHDRAWAL\",\"classes\":\"\",\"parent\":\"TransactionType\"},{\"kind\":8,\"name\":\"Channel\",\"url\":\"enums/Channel.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"DEALER\",\"url\":\"enums/Channel.html#DEALER\",\"classes\":\"\",\"parent\":\"Channel\"},{\"kind\":16,\"name\":\"MOBILE\",\"url\":\"enums/Channel.html#MOBILE\",\"classes\":\"\",\"parent\":\"Channel\"},{\"kind\":16,\"name\":\"PUBLIC_FIX_API\",\"url\":\"enums/Channel.html#PUBLIC_FIX_API\",\"classes\":\"\",\"parent\":\"Channel\"},{\"kind\":16,\"name\":\"PUBLIC_WEB_API\",\"url\":\"enums/Channel.html#PUBLIC_WEB_API\",\"classes\":\"\",\"parent\":\"Channel\"},{\"kind\":16,\"name\":\"SYSTEM\",\"url\":\"enums/Channel.html#SYSTEM\",\"classes\":\"\",\"parent\":\"Channel\"},{\"kind\":16,\"name\":\"WEB\",\"url\":\"enums/Channel.html#WEB\",\"classes\":\"\",\"parent\":\"Channel\"},{\"kind\":8,\"name\":\"ActionType\",\"url\":\"enums/ActionType.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"LIMIT_ORDER_AMENDED\",\"url\":\"enums/ActionType.html#LIMIT_ORDER_AMENDED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"LIMIT_ORDER_DELETED\",\"url\":\"enums/ActionType.html#LIMIT_ORDER_DELETED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"LIMIT_ORDER_FILLED\",\"url\":\"enums/ActionType.html#LIMIT_ORDER_FILLED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"LIMIT_ORDER_OPENED\",\"url\":\"enums/ActionType.html#LIMIT_ORDER_OPENED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"LIMIT_ORDER_ROLLED\",\"url\":\"enums/ActionType.html#LIMIT_ORDER_ROLLED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"POSITION_CLOSED\",\"url\":\"enums/ActionType.html#POSITION_CLOSED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"POSITION_DELETED\",\"url\":\"enums/ActionType.html#POSITION_DELETED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"POSITION_OPENED\",\"url\":\"enums/ActionType.html#POSITION_OPENED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"POSITION_PARTIALLY_CLOSED\",\"url\":\"enums/ActionType.html#POSITION_PARTIALLY_CLOSED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"POSITION_ROLLED\",\"url\":\"enums/ActionType.html#POSITION_ROLLED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"STOP_LIMIT_AMENDED\",\"url\":\"enums/ActionType.html#STOP_LIMIT_AMENDED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"STOP_ORDER_AMENDED\",\"url\":\"enums/ActionType.html#STOP_ORDER_AMENDED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"STOP_ORDER_DELETED\",\"url\":\"enums/ActionType.html#STOP_ORDER_DELETED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"STOP_ORDER_FILLED\",\"url\":\"enums/ActionType.html#STOP_ORDER_FILLED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"STOP_ORDER_OPENED\",\"url\":\"enums/ActionType.html#STOP_ORDER_OPENED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"STOP_ORDER_ROLLED\",\"url\":\"enums/ActionType.html#STOP_ORDER_ROLLED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"UNKNOWN\",\"url\":\"enums/ActionType.html#UNKNOWN\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":16,\"name\":\"WORKING_ORDER_DELETED\",\"url\":\"enums/ActionType.html#WORKING_ORDER_DELETED\",\"classes\":\"\",\"parent\":\"ActionType\"},{\"kind\":8,\"name\":\"ActivityStatus\",\"url\":\"enums/ActivityStatus.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"ACCEPTED\",\"url\":\"enums/ActivityStatus.html#ACCEPTED\",\"classes\":\"\",\"parent\":\"ActivityStatus\"},{\"kind\":16,\"name\":\"REJECTED\",\"url\":\"enums/ActivityStatus.html#REJECTED\",\"classes\":\"\",\"parent\":\"ActivityStatus\"},{\"kind\":16,\"name\":\"UNKNOWN\",\"url\":\"enums/ActivityStatus.html#UNKNOWN\",\"classes\":\"\",\"parent\":\"ActivityStatus\"},{\"kind\":8,\"name\":\"ActivityType\",\"url\":\"enums/ActivityType.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"EDIT_STOP_AND_LIMIT\",\"url\":\"enums/ActivityType.html#EDIT_STOP_AND_LIMIT\",\"classes\":\"\",\"parent\":\"ActivityType\"},{\"kind\":16,\"name\":\"POSITION\",\"url\":\"enums/ActivityType.html#POSITION\",\"classes\":\"\",\"parent\":\"ActivityType\"},{\"kind\":16,\"name\":\"SYSTEM\",\"url\":\"enums/ActivityType.html#SYSTEM\",\"classes\":\"\",\"parent\":\"ActivityType\"},{\"kind\":16,\"name\":\"WORKING_ORDER\",\"url\":\"enums/ActivityType.html#WORKING_ORDER\",\"classes\":\"\",\"parent\":\"ActivityType\"},{\"kind\":256,\"name\":\"Balance\",\"url\":\"interfaces/Balance.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"available\",\"url\":\"interfaces/Balance.html#available\",\"classes\":\"\",\"parent\":\"Balance\"},{\"kind\":1024,\"name\":\"balance\",\"url\":\"interfaces/Balance.html#balance\",\"classes\":\"\",\"parent\":\"Balance\"},{\"kind\":1024,\"name\":\"deposit\",\"url\":\"interfaces/Balance.html#deposit\",\"classes\":\"\",\"parent\":\"Balance\"},{\"kind\":1024,\"name\":\"profitLoss\",\"url\":\"interfaces/Balance.html#profitLoss\",\"classes\":\"\",\"parent\":\"Balance\"},{\"kind\":256,\"name\":\"Account\",\"url\":\"interfaces/Account.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"accountAlias\",\"url\":\"interfaces/Account.html#accountAlias\",\"classes\":\"\",\"parent\":\"Account\"},{\"kind\":1024,\"name\":\"accountId\",\"url\":\"interfaces/Account.html#accountId\",\"classes\":\"\",\"parent\":\"Account\"},{\"kind\":1024,\"name\":\"accountName\",\"url\":\"interfaces/Account.html#accountName\",\"classes\":\"\",\"parent\":\"Account\"},{\"kind\":1024,\"name\":\"accountType\",\"url\":\"interfaces/Account.html#accountType\",\"classes\":\"\",\"parent\":\"Account\"},{\"kind\":1024,\"name\":\"balance\",\"url\":\"interfaces/Account.html#balance\",\"classes\":\"\",\"parent\":\"Account\"},{\"kind\":1024,\"name\":\"canTransferFrom\",\"url\":\"interfaces/Account.html#canTransferFrom\",\"classes\":\"\",\"parent\":\"Account\"},{\"kind\":1024,\"name\":\"canTransferTo\",\"url\":\"interfaces/Account.html#canTransferTo\",\"classes\":\"\",\"parent\":\"Account\"},{\"kind\":1024,\"name\":\"currency\",\"url\":\"interfaces/Account.html#currency\",\"classes\":\"\",\"parent\":\"Account\"},{\"kind\":1024,\"name\":\"preferred\",\"url\":\"interfaces/Account.html#preferred\",\"classes\":\"\",\"parent\":\"Account\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/Account.html#status\",\"classes\":\"\",\"parent\":\"Account\"},{\"kind\":256,\"name\":\"AccountsResponse\",\"url\":\"interfaces/AccountsResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"accounts\",\"url\":\"interfaces/AccountsResponse.html#accounts\",\"classes\":\"\",\"parent\":\"AccountsResponse\"},{\"kind\":256,\"name\":\"Action\",\"url\":\"interfaces/Action.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"actionType\",\"url\":\"interfaces/Action.html#actionType\",\"classes\":\"\",\"parent\":\"Action\"},{\"kind\":1024,\"name\":\"affectedDealId\",\"url\":\"interfaces/Action.html#affectedDealId\",\"classes\":\"\",\"parent\":\"Action\"},{\"kind\":256,\"name\":\"Details\",\"url\":\"interfaces/Details.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"actions\",\"url\":\"interfaces/Details.html#actions\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"currency\",\"url\":\"interfaces/Details.html#currency\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"dealReference\",\"url\":\"interfaces/Details.html#dealReference\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"interfaces/Details.html#direction\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"goodTillDate\",\"url\":\"interfaces/Details.html#goodTillDate\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"guaranteedStop\",\"url\":\"interfaces/Details.html#guaranteedStop\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/Details.html#level\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"limitDistance\",\"url\":\"interfaces/Details.html#limitDistance\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"limitLevel\",\"url\":\"interfaces/Details.html#limitLevel\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"marketName\",\"url\":\"interfaces/Details.html#marketName\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/Details.html#size\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"stopDistance\",\"url\":\"interfaces/Details.html#stopDistance\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"stopLevel\",\"url\":\"interfaces/Details.html#stopLevel\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"trailingStep\",\"url\":\"interfaces/Details.html#trailingStep\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":1024,\"name\":\"trailingStopDistance\",\"url\":\"interfaces/Details.html#trailingStopDistance\",\"classes\":\"\",\"parent\":\"Details\"},{\"kind\":256,\"name\":\"Activity\",\"url\":\"interfaces/Activity.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"channel\",\"url\":\"interfaces/Activity.html#channel\",\"classes\":\"\",\"parent\":\"Activity\"},{\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/Activity.html#date\",\"classes\":\"\",\"parent\":\"Activity\"},{\"kind\":1024,\"name\":\"dealId\",\"url\":\"interfaces/Activity.html#dealId\",\"classes\":\"\",\"parent\":\"Activity\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/Activity.html#description\",\"classes\":\"\",\"parent\":\"Activity\"},{\"kind\":1024,\"name\":\"details\",\"url\":\"interfaces/Activity.html#details\",\"classes\":\"\",\"parent\":\"Activity\"},{\"kind\":1024,\"name\":\"epic\",\"url\":\"interfaces/Activity.html#epic\",\"classes\":\"\",\"parent\":\"Activity\"},{\"kind\":1024,\"name\":\"period\",\"url\":\"interfaces/Activity.html#period\",\"classes\":\"\",\"parent\":\"Activity\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/Activity.html#status\",\"classes\":\"\",\"parent\":\"Activity\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/Activity.html#type\",\"classes\":\"\",\"parent\":\"Activity\"},{\"kind\":256,\"name\":\"ActivityPaging\",\"url\":\"interfaces/ActivityPaging.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"next\",\"url\":\"interfaces/ActivityPaging.html#next\",\"classes\":\"\",\"parent\":\"ActivityPaging\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/ActivityPaging.html#size\",\"classes\":\"\",\"parent\":\"ActivityPaging\"},{\"kind\":256,\"name\":\"ActivityMetadata\",\"url\":\"interfaces/ActivityMetadata.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"paging\",\"url\":\"interfaces/ActivityMetadata.html#paging\",\"classes\":\"\",\"parent\":\"ActivityMetadata\"},{\"kind\":256,\"name\":\"ActivityHistoryRequest\",\"url\":\"interfaces/ActivityHistoryRequest.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"dealId\",\"url\":\"interfaces/ActivityHistoryRequest.html#dealId\",\"classes\":\"\",\"parent\":\"ActivityHistoryRequest\"},{\"kind\":1024,\"name\":\"detailed\",\"url\":\"interfaces/ActivityHistoryRequest.html#detailed\",\"classes\":\"\",\"parent\":\"ActivityHistoryRequest\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/ActivityHistoryRequest.html#filter\",\"classes\":\"\",\"parent\":\"ActivityHistoryRequest\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/ActivityHistoryRequest.html#from\",\"classes\":\"\",\"parent\":\"ActivityHistoryRequest\"},{\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/ActivityHistoryRequest.html#pageSize\",\"classes\":\"\",\"parent\":\"ActivityHistoryRequest\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/ActivityHistoryRequest.html#to\",\"classes\":\"\",\"parent\":\"ActivityHistoryRequest\"},{\"kind\":256,\"name\":\"ActivityHistoryResponse\",\"url\":\"interfaces/ActivityHistoryResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"activities\",\"url\":\"interfaces/ActivityHistoryResponse.html#activities\",\"classes\":\"\",\"parent\":\"ActivityHistoryResponse\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/ActivityHistoryResponse.html#metadata\",\"classes\":\"\",\"parent\":\"ActivityHistoryResponse\"},{\"kind\":256,\"name\":\"Transaction\",\"url\":\"interfaces/Transaction.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"cashTransaction\",\"url\":\"interfaces/Transaction.html#cashTransaction\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"closeLevel\",\"url\":\"interfaces/Transaction.html#closeLevel\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"currency\",\"url\":\"interfaces/Transaction.html#currency\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/Transaction.html#date\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"dateUtc\",\"url\":\"interfaces/Transaction.html#dateUtc\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"instrumentName\",\"url\":\"interfaces/Transaction.html#instrumentName\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"openDateUtc\",\"url\":\"interfaces/Transaction.html#openDateUtc\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"openLevel\",\"url\":\"interfaces/Transaction.html#openLevel\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"period\",\"url\":\"interfaces/Transaction.html#period\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"profitAndLoss\",\"url\":\"interfaces/Transaction.html#profitAndLoss\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"reference\",\"url\":\"interfaces/Transaction.html#reference\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/Transaction.html#size\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":1024,\"name\":\"transactionType\",\"url\":\"interfaces/Transaction.html#transactionType\",\"classes\":\"\",\"parent\":\"Transaction\"},{\"kind\":256,\"name\":\"TransactionPaging\",\"url\":\"interfaces/TransactionPaging.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"pageNumber\",\"url\":\"interfaces/TransactionPaging.html#pageNumber\",\"classes\":\"\",\"parent\":\"TransactionPaging\"},{\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/TransactionPaging.html#pageSize\",\"classes\":\"\",\"parent\":\"TransactionPaging\"},{\"kind\":1024,\"name\":\"totalPages\",\"url\":\"interfaces/TransactionPaging.html#totalPages\",\"classes\":\"\",\"parent\":\"TransactionPaging\"},{\"kind\":256,\"name\":\"TransactionMetadata\",\"url\":\"interfaces/TransactionMetadata.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"pageData\",\"url\":\"interfaces/TransactionMetadata.html#pageData\",\"classes\":\"\",\"parent\":\"TransactionMetadata\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/TransactionMetadata.html#size\",\"classes\":\"\",\"parent\":\"TransactionMetadata\"},{\"kind\":256,\"name\":\"TransactionHistoryRequest\",\"url\":\"interfaces/TransactionHistoryRequest.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/TransactionHistoryRequest.html#from\",\"classes\":\"\",\"parent\":\"TransactionHistoryRequest\"},{\"kind\":1024,\"name\":\"maxSpanSeconds\",\"url\":\"interfaces/TransactionHistoryRequest.html#maxSpanSeconds\",\"classes\":\"\",\"parent\":\"TransactionHistoryRequest\"},{\"kind\":1024,\"name\":\"pageNumber\",\"url\":\"interfaces/TransactionHistoryRequest.html#pageNumber\",\"classes\":\"\",\"parent\":\"TransactionHistoryRequest\"},{\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/TransactionHistoryRequest.html#pageSize\",\"classes\":\"\",\"parent\":\"TransactionHistoryRequest\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/TransactionHistoryRequest.html#to\",\"classes\":\"\",\"parent\":\"TransactionHistoryRequest\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TransactionHistoryRequest.html#type\",\"classes\":\"\",\"parent\":\"TransactionHistoryRequest\"},{\"kind\":256,\"name\":\"TransactionHistoryResponse\",\"url\":\"interfaces/TransactionHistoryResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/TransactionHistoryResponse.html#metadata\",\"classes\":\"\",\"parent\":\"TransactionHistoryResponse\"},{\"kind\":1024,\"name\":\"transactions\",\"url\":\"interfaces/TransactionHistoryResponse.html#transactions\",\"classes\":\"\",\"parent\":\"TransactionHistoryResponse\"},{\"kind\":128,\"name\":\"AccountAPI\",\"url\":\"classes/AccountAPI.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"URL\",\"url\":\"classes/AccountAPI.html#URL\",\"classes\":\"\",\"parent\":\"AccountAPI\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/AccountAPI.html#URL.__type\",\"classes\":\"\",\"parent\":\"AccountAPI.URL\"},{\"kind\":1024,\"name\":\"ACCOUNTS\",\"url\":\"classes/AccountAPI.html#URL.__type.ACCOUNTS\",\"classes\":\"\",\"parent\":\"AccountAPI.URL.__type\"},{\"kind\":1024,\"name\":\"HISTORY_ACTIVITY\",\"url\":\"classes/AccountAPI.html#URL.__type.HISTORY_ACTIVITY\",\"classes\":\"\",\"parent\":\"AccountAPI.URL.__type\"},{\"kind\":1024,\"name\":\"HISTORY_TRANSACTIONS\",\"url\":\"classes/AccountAPI.html#URL.__type.HISTORY_TRANSACTIONS\",\"classes\":\"\",\"parent\":\"AccountAPI.URL.__type\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/AccountAPI.html#constructor\",\"classes\":\"\",\"parent\":\"AccountAPI\"},{\"kind\":2048,\"name\":\"getAccounts\",\"url\":\"classes/AccountAPI.html#getAccounts\",\"classes\":\"\",\"parent\":\"AccountAPI\"},{\"kind\":2048,\"name\":\"getActivityHistory\",\"url\":\"classes/AccountAPI.html#getActivityHistory\",\"classes\":\"\",\"parent\":\"AccountAPI\"},{\"kind\":2048,\"name\":\"getTransactionHistory\",\"url\":\"classes/AccountAPI.html#getTransactionHistory\",\"classes\":\"\",\"parent\":\"AccountAPI\"},{\"kind\":8,\"name\":\"Direction\",\"url\":\"enums/Direction.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"BUY\",\"url\":\"enums/Direction.html#BUY\",\"classes\":\"\",\"parent\":\"Direction\"},{\"kind\":16,\"name\":\"SELL\",\"url\":\"enums/Direction.html#SELL\",\"classes\":\"\",\"parent\":\"Direction\"},{\"kind\":8,\"name\":\"PositionOrderType\",\"url\":\"enums/PositionOrderType.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"LIMIT\",\"url\":\"enums/PositionOrderType.html#LIMIT\",\"classes\":\"\",\"parent\":\"PositionOrderType\"},{\"kind\":16,\"name\":\"MARKET\",\"url\":\"enums/PositionOrderType.html#MARKET\",\"classes\":\"\",\"parent\":\"PositionOrderType\"},{\"kind\":16,\"name\":\"QUOTE\",\"url\":\"enums/PositionOrderType.html#QUOTE\",\"classes\":\"\",\"parent\":\"PositionOrderType\"},{\"kind\":8,\"name\":\"PositionTimeInForce\",\"url\":\"enums/PositionTimeInForce.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"EXECUTE_AND_ELIMINATE\",\"url\":\"enums/PositionTimeInForce.html#EXECUTE_AND_ELIMINATE\",\"classes\":\"\",\"parent\":\"PositionTimeInForce\"},{\"kind\":16,\"name\":\"FILL_OR_KILL\",\"url\":\"enums/PositionTimeInForce.html#FILL_OR_KILL\",\"classes\":\"\",\"parent\":\"PositionTimeInForce\"},{\"kind\":8,\"name\":\"OrderType\",\"url\":\"enums/OrderType.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"LIMIT\",\"url\":\"enums/OrderType.html#LIMIT\",\"classes\":\"\",\"parent\":\"OrderType\"},{\"kind\":16,\"name\":\"STOP\",\"url\":\"enums/OrderType.html#STOP\",\"classes\":\"\",\"parent\":\"OrderType\"},{\"kind\":8,\"name\":\"OrderTimeInForce\",\"url\":\"enums/OrderTimeInForce.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"GOOD_TILL_CANCELLED\",\"url\":\"enums/OrderTimeInForce.html#GOOD_TILL_CANCELLED\",\"classes\":\"\",\"parent\":\"OrderTimeInForce\"},{\"kind\":16,\"name\":\"GOOD_TILL_DATE\",\"url\":\"enums/OrderTimeInForce.html#GOOD_TILL_DATE\",\"classes\":\"\",\"parent\":\"OrderTimeInForce\"},{\"kind\":8,\"name\":\"AffectedDealStatus\",\"url\":\"enums/AffectedDealStatus.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"AMENDED\",\"url\":\"enums/AffectedDealStatus.html#AMENDED\",\"classes\":\"\",\"parent\":\"AffectedDealStatus\"},{\"kind\":16,\"name\":\"DELETED\",\"url\":\"enums/AffectedDealStatus.html#DELETED\",\"classes\":\"\",\"parent\":\"AffectedDealStatus\"},{\"kind\":16,\"name\":\"FULLY_CLOSED\",\"url\":\"enums/AffectedDealStatus.html#FULLY_CLOSED\",\"classes\":\"\",\"parent\":\"AffectedDealStatus\"},{\"kind\":16,\"name\":\"OPENED\",\"url\":\"enums/AffectedDealStatus.html#OPENED\",\"classes\":\"\",\"parent\":\"AffectedDealStatus\"},{\"kind\":16,\"name\":\"PARTIALLY_CLOSED\",\"url\":\"enums/AffectedDealStatus.html#PARTIALLY_CLOSED\",\"classes\":\"\",\"parent\":\"AffectedDealStatus\"},{\"kind\":8,\"name\":\"DealStatus\",\"url\":\"enums/DealStatus.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"ACCEPTED\",\"url\":\"enums/DealStatus.html#ACCEPTED\",\"classes\":\"\",\"parent\":\"DealStatus\"},{\"kind\":16,\"name\":\"REJECTED\",\"url\":\"enums/DealStatus.html#REJECTED\",\"classes\":\"\",\"parent\":\"DealStatus\"},{\"kind\":8,\"name\":\"Status\",\"url\":\"enums/Status.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"AMENDED\",\"url\":\"enums/Status.html#AMENDED\",\"classes\":\"\",\"parent\":\"Status\"},{\"kind\":16,\"name\":\"CLOSED\",\"url\":\"enums/Status.html#CLOSED\",\"classes\":\"\",\"parent\":\"Status\"},{\"kind\":16,\"name\":\"DELETED\",\"url\":\"enums/Status.html#DELETED\",\"classes\":\"\",\"parent\":\"Status\"},{\"kind\":16,\"name\":\"OPEN\",\"url\":\"enums/Status.html#OPEN\",\"classes\":\"\",\"parent\":\"Status\"},{\"kind\":16,\"name\":\"PARTIALLY_CLOSED\",\"url\":\"enums/Status.html#PARTIALLY_CLOSED\",\"classes\":\"\",\"parent\":\"Status\"},{\"kind\":256,\"name\":\"Position\",\"url\":\"interfaces/Position.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"contractSize\",\"url\":\"interfaces/Position.html#contractSize\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"controlledRisk\",\"url\":\"interfaces/Position.html#controlledRisk\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"createdDate\",\"url\":\"interfaces/Position.html#createdDate\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"createdDateUTC\",\"url\":\"interfaces/Position.html#createdDateUTC\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"currency\",\"url\":\"interfaces/Position.html#currency\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"dealId\",\"url\":\"interfaces/Position.html#dealId\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"dealReference\",\"url\":\"interfaces/Position.html#dealReference\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"interfaces/Position.html#direction\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/Position.html#level\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"limitLevel\",\"url\":\"interfaces/Position.html#limitLevel\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/Position.html#size\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"stopLevel\",\"url\":\"interfaces/Position.html#stopLevel\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"trailingStep\",\"url\":\"interfaces/Position.html#trailingStep\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":1024,\"name\":\"trailingStopDistance\",\"url\":\"interfaces/Position.html#trailingStopDistance\",\"classes\":\"\",\"parent\":\"Position\"},{\"kind\":256,\"name\":\"PositionResponse\",\"url\":\"interfaces/PositionResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"market\",\"url\":\"interfaces/PositionResponse.html#market\",\"classes\":\"\",\"parent\":\"PositionResponse\"},{\"kind\":1024,\"name\":\"position\",\"url\":\"interfaces/PositionResponse.html#position\",\"classes\":\"\",\"parent\":\"PositionResponse\"},{\"kind\":256,\"name\":\"PositionListResponse\",\"url\":\"interfaces/PositionListResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"positions\",\"url\":\"interfaces/PositionListResponse.html#positions\",\"classes\":\"\",\"parent\":\"PositionListResponse\"},{\"kind\":256,\"name\":\"PositionCreateRequest\",\"url\":\"interfaces/PositionCreateRequest.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"currencyCode\",\"url\":\"interfaces/PositionCreateRequest.html#currencyCode\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"interfaces/PositionCreateRequest.html#direction\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"epic\",\"url\":\"interfaces/PositionCreateRequest.html#epic\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"expiry\",\"url\":\"interfaces/PositionCreateRequest.html#expiry\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"forceOpen\",\"url\":\"interfaces/PositionCreateRequest.html#forceOpen\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"goodTillDate\",\"url\":\"interfaces/PositionCreateRequest.html#goodTillDate\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"guaranteedStop\",\"url\":\"interfaces/PositionCreateRequest.html#guaranteedStop\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/PositionCreateRequest.html#level\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"limitDistance\",\"url\":\"interfaces/PositionCreateRequest.html#limitDistance\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"limitLevel\",\"url\":\"interfaces/PositionCreateRequest.html#limitLevel\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"orderType\",\"url\":\"interfaces/PositionCreateRequest.html#orderType\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/PositionCreateRequest.html#size\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"stopDistance\",\"url\":\"interfaces/PositionCreateRequest.html#stopDistance\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"stopLevel\",\"url\":\"interfaces/PositionCreateRequest.html#stopLevel\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":1024,\"name\":\"timeInForce\",\"url\":\"interfaces/PositionCreateRequest.html#timeInForce\",\"classes\":\"\",\"parent\":\"PositionCreateRequest\"},{\"kind\":256,\"name\":\"PositionCloseRequest\",\"url\":\"interfaces/PositionCloseRequest.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"dealId\",\"url\":\"interfaces/PositionCloseRequest.html#dealId\",\"classes\":\"\",\"parent\":\"PositionCloseRequest\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"interfaces/PositionCloseRequest.html#direction\",\"classes\":\"\",\"parent\":\"PositionCloseRequest\"},{\"kind\":1024,\"name\":\"epic\",\"url\":\"interfaces/PositionCloseRequest.html#epic\",\"classes\":\"\",\"parent\":\"PositionCloseRequest\"},{\"kind\":1024,\"name\":\"expiry\",\"url\":\"interfaces/PositionCloseRequest.html#expiry\",\"classes\":\"\",\"parent\":\"PositionCloseRequest\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/PositionCloseRequest.html#level\",\"classes\":\"\",\"parent\":\"PositionCloseRequest\"},{\"kind\":1024,\"name\":\"orderType\",\"url\":\"interfaces/PositionCloseRequest.html#orderType\",\"classes\":\"\",\"parent\":\"PositionCloseRequest\"},{\"kind\":1024,\"name\":\"quoteId\",\"url\":\"interfaces/PositionCloseRequest.html#quoteId\",\"classes\":\"\",\"parent\":\"PositionCloseRequest\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/PositionCloseRequest.html#size\",\"classes\":\"\",\"parent\":\"PositionCloseRequest\"},{\"kind\":1024,\"name\":\"timeInForce\",\"url\":\"interfaces/PositionCloseRequest.html#timeInForce\",\"classes\":\"\",\"parent\":\"PositionCloseRequest\"},{\"kind\":256,\"name\":\"PositionUpdateRequest\",\"url\":\"interfaces/PositionUpdateRequest.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"limitLevel\",\"url\":\"interfaces/PositionUpdateRequest.html#limitLevel\",\"classes\":\"\",\"parent\":\"PositionUpdateRequest\"},{\"kind\":1024,\"name\":\"stopLevel\",\"url\":\"interfaces/PositionUpdateRequest.html#stopLevel\",\"classes\":\"\",\"parent\":\"PositionUpdateRequest\"},{\"kind\":1024,\"name\":\"trailingStop\",\"url\":\"interfaces/PositionUpdateRequest.html#trailingStop\",\"classes\":\"\",\"parent\":\"PositionUpdateRequest\"},{\"kind\":1024,\"name\":\"trailingStopDistance\",\"url\":\"interfaces/PositionUpdateRequest.html#trailingStopDistance\",\"classes\":\"\",\"parent\":\"PositionUpdateRequest\"},{\"kind\":1024,\"name\":\"trailingStopIncrement\",\"url\":\"interfaces/PositionUpdateRequest.html#trailingStopIncrement\",\"classes\":\"\",\"parent\":\"PositionUpdateRequest\"},{\"kind\":256,\"name\":\"Order\",\"url\":\"interfaces/Order.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"createdDate\",\"url\":\"interfaces/Order.html#createdDate\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"createdDateUTC\",\"url\":\"interfaces/Order.html#createdDateUTC\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"currencyCode\",\"url\":\"interfaces/Order.html#currencyCode\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"dealId\",\"url\":\"interfaces/Order.html#dealId\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"interfaces/Order.html#direction\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"dma\",\"url\":\"interfaces/Order.html#dma\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"epic\",\"url\":\"interfaces/Order.html#epic\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"goodTillDate\",\"url\":\"interfaces/Order.html#goodTillDate\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"goodTillDateISO\",\"url\":\"interfaces/Order.html#goodTillDateISO\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"guaranteedStop\",\"url\":\"interfaces/Order.html#guaranteedStop\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"limitDistance\",\"url\":\"interfaces/Order.html#limitDistance\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"orderLevel\",\"url\":\"interfaces/Order.html#orderLevel\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"orderSize\",\"url\":\"interfaces/Order.html#orderSize\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"orderType\",\"url\":\"interfaces/Order.html#orderType\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"stopDistance\",\"url\":\"interfaces/Order.html#stopDistance\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":1024,\"name\":\"timeInForce\",\"url\":\"interfaces/Order.html#timeInForce\",\"classes\":\"\",\"parent\":\"Order\"},{\"kind\":256,\"name\":\"OrderResponse\",\"url\":\"interfaces/OrderResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"marketData\",\"url\":\"interfaces/OrderResponse.html#marketData\",\"classes\":\"\",\"parent\":\"OrderResponse\"},{\"kind\":1024,\"name\":\"workingOrderData\",\"url\":\"interfaces/OrderResponse.html#workingOrderData\",\"classes\":\"\",\"parent\":\"OrderResponse\"},{\"kind\":256,\"name\":\"OrderListResponse\",\"url\":\"interfaces/OrderListResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"workingOrders\",\"url\":\"interfaces/OrderListResponse.html#workingOrders\",\"classes\":\"\",\"parent\":\"OrderListResponse\"},{\"kind\":256,\"name\":\"OrderCreateRequest\",\"url\":\"interfaces/OrderCreateRequest.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"currencyCode\",\"url\":\"interfaces/OrderCreateRequest.html#currencyCode\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"interfaces/OrderCreateRequest.html#direction\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"epic\",\"url\":\"interfaces/OrderCreateRequest.html#epic\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"expiry\",\"url\":\"interfaces/OrderCreateRequest.html#expiry\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"forceOpen\",\"url\":\"interfaces/OrderCreateRequest.html#forceOpen\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"goodTillDate\",\"url\":\"interfaces/OrderCreateRequest.html#goodTillDate\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"guaranteedStop\",\"url\":\"interfaces/OrderCreateRequest.html#guaranteedStop\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/OrderCreateRequest.html#level\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"limitDistance\",\"url\":\"interfaces/OrderCreateRequest.html#limitDistance\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"limitLevel\",\"url\":\"interfaces/OrderCreateRequest.html#limitLevel\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/OrderCreateRequest.html#size\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"stopDistance\",\"url\":\"interfaces/OrderCreateRequest.html#stopDistance\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"stopLevel\",\"url\":\"interfaces/OrderCreateRequest.html#stopLevel\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"timeInForce\",\"url\":\"interfaces/OrderCreateRequest.html#timeInForce\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/OrderCreateRequest.html#type\",\"classes\":\"\",\"parent\":\"OrderCreateRequest\"},{\"kind\":256,\"name\":\"OrderUpdateRequest\",\"url\":\"interfaces/OrderUpdateRequest.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"goodTillDate\",\"url\":\"interfaces/OrderUpdateRequest.html#goodTillDate\",\"classes\":\"\",\"parent\":\"OrderUpdateRequest\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/OrderUpdateRequest.html#level\",\"classes\":\"\",\"parent\":\"OrderUpdateRequest\"},{\"kind\":1024,\"name\":\"limitDistance\",\"url\":\"interfaces/OrderUpdateRequest.html#limitDistance\",\"classes\":\"\",\"parent\":\"OrderUpdateRequest\"},{\"kind\":1024,\"name\":\"limitLevel\",\"url\":\"interfaces/OrderUpdateRequest.html#limitLevel\",\"classes\":\"\",\"parent\":\"OrderUpdateRequest\"},{\"kind\":1024,\"name\":\"stopDistance\",\"url\":\"interfaces/OrderUpdateRequest.html#stopDistance\",\"classes\":\"\",\"parent\":\"OrderUpdateRequest\"},{\"kind\":1024,\"name\":\"stopLevel\",\"url\":\"interfaces/OrderUpdateRequest.html#stopLevel\",\"classes\":\"\",\"parent\":\"OrderUpdateRequest\"},{\"kind\":1024,\"name\":\"timeInForce\",\"url\":\"interfaces/OrderUpdateRequest.html#timeInForce\",\"classes\":\"\",\"parent\":\"OrderUpdateRequest\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/OrderUpdateRequest.html#type\",\"classes\":\"\",\"parent\":\"OrderUpdateRequest\"},{\"kind\":256,\"name\":\"DealReferenceResponse\",\"url\":\"interfaces/DealReferenceResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"dealReference\",\"url\":\"interfaces/DealReferenceResponse.html#dealReference\",\"classes\":\"\",\"parent\":\"DealReferenceResponse\"},{\"kind\":256,\"name\":\"AffectedDeal\",\"url\":\"interfaces/AffectedDeal.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"dealId\",\"url\":\"interfaces/AffectedDeal.html#dealId\",\"classes\":\"\",\"parent\":\"AffectedDeal\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/AffectedDeal.html#status\",\"classes\":\"\",\"parent\":\"AffectedDeal\"},{\"kind\":256,\"name\":\"DealConfirmation\",\"url\":\"interfaces/DealConfirmation.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"affectedDeals\",\"url\":\"interfaces/DealConfirmation.html#affectedDeals\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/DealConfirmation.html#date\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"dealId\",\"url\":\"interfaces/DealConfirmation.html#dealId\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"dealReference\",\"url\":\"interfaces/DealConfirmation.html#dealReference\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"dealStatus\",\"url\":\"interfaces/DealConfirmation.html#dealStatus\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"interfaces/DealConfirmation.html#direction\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"epic\",\"url\":\"interfaces/DealConfirmation.html#epic\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"expiry\",\"url\":\"interfaces/DealConfirmation.html#expiry\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"guaranteedStop\",\"url\":\"interfaces/DealConfirmation.html#guaranteedStop\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/DealConfirmation.html#level\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"limitDistance\",\"url\":\"interfaces/DealConfirmation.html#limitDistance\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"limitLevel\",\"url\":\"interfaces/DealConfirmation.html#limitLevel\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"profit\",\"url\":\"interfaces/DealConfirmation.html#profit\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"profitCurrency\",\"url\":\"interfaces/DealConfirmation.html#profitCurrency\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"interfaces/DealConfirmation.html#reason\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/DealConfirmation.html#size\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/DealConfirmation.html#status\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"stopDistance\",\"url\":\"interfaces/DealConfirmation.html#stopDistance\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"stopLevel\",\"url\":\"interfaces/DealConfirmation.html#stopLevel\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":1024,\"name\":\"trailingStop\",\"url\":\"interfaces/DealConfirmation.html#trailingStop\",\"classes\":\"\",\"parent\":\"DealConfirmation\"},{\"kind\":128,\"name\":\"DealingAPI\",\"url\":\"classes/DealingAPI.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"URL\",\"url\":\"classes/DealingAPI.html#URL\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/DealingAPI.html#URL.__type\",\"classes\":\"\",\"parent\":\"DealingAPI.URL\"},{\"kind\":1024,\"name\":\"CONFIRMS\",\"url\":\"classes/DealingAPI.html#URL.__type.CONFIRMS\",\"classes\":\"\",\"parent\":\"DealingAPI.URL.__type\"},{\"kind\":1024,\"name\":\"POSITIONS\",\"url\":\"classes/DealingAPI.html#URL.__type.POSITIONS\",\"classes\":\"\",\"parent\":\"DealingAPI.URL.__type\"},{\"kind\":1024,\"name\":\"POSITIONS_OTC\",\"url\":\"classes/DealingAPI.html#URL.__type.POSITIONS_OTC\",\"classes\":\"\",\"parent\":\"DealingAPI.URL.__type\"},{\"kind\":1024,\"name\":\"WORKINGORDERS\",\"url\":\"classes/DealingAPI.html#URL.__type.WORKINGORDERS\",\"classes\":\"\",\"parent\":\"DealingAPI.URL.__type\"},{\"kind\":1024,\"name\":\"WORKINGORDERS_OTC\",\"url\":\"classes/DealingAPI.html#URL.__type.WORKINGORDERS_OTC\",\"classes\":\"\",\"parent\":\"DealingAPI.URL.__type\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/DealingAPI.html#constructor\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":2048,\"name\":\"getAllOpenPositions\",\"url\":\"classes/DealingAPI.html#getAllOpenPositions\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":2048,\"name\":\"getPosition\",\"url\":\"classes/DealingAPI.html#getPosition\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":2048,\"name\":\"createPosition\",\"url\":\"classes/DealingAPI.html#createPosition\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":2048,\"name\":\"closePosition\",\"url\":\"classes/DealingAPI.html#closePosition\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":2048,\"name\":\"updatePosition\",\"url\":\"classes/DealingAPI.html#updatePosition\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":2048,\"name\":\"confirmTrade\",\"url\":\"classes/DealingAPI.html#confirmTrade\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":2048,\"name\":\"getAllOrders\",\"url\":\"classes/DealingAPI.html#getAllOrders\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":2048,\"name\":\"createOrder\",\"url\":\"classes/DealingAPI.html#createOrder\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":2048,\"name\":\"deleteOrder\",\"url\":\"classes/DealingAPI.html#deleteOrder\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":2048,\"name\":\"updateOrder\",\"url\":\"classes/DealingAPI.html#updateOrder\",\"classes\":\"\",\"parent\":\"DealingAPI\"},{\"kind\":256,\"name\":\"OauthToken\",\"url\":\"interfaces/OauthToken.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"access_token\",\"url\":\"interfaces/OauthToken.html#access_token\",\"classes\":\"\",\"parent\":\"OauthToken\"},{\"kind\":1024,\"name\":\"expires_in\",\"url\":\"interfaces/OauthToken.html#expires_in\",\"classes\":\"\",\"parent\":\"OauthToken\"},{\"kind\":1024,\"name\":\"refresh_token\",\"url\":\"interfaces/OauthToken.html#refresh_token\",\"classes\":\"\",\"parent\":\"OauthToken\"},{\"kind\":1024,\"name\":\"scope\",\"url\":\"interfaces/OauthToken.html#scope\",\"classes\":\"\",\"parent\":\"OauthToken\"},{\"kind\":1024,\"name\":\"token_type\",\"url\":\"interfaces/OauthToken.html#token_type\",\"classes\":\"\",\"parent\":\"OauthToken\"},{\"kind\":256,\"name\":\"TradingSession\",\"url\":\"interfaces/TradingSession.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"accountId\",\"url\":\"interfaces/TradingSession.html#accountId\",\"classes\":\"\",\"parent\":\"TradingSession\"},{\"kind\":1024,\"name\":\"clientId\",\"url\":\"interfaces/TradingSession.html#clientId\",\"classes\":\"\",\"parent\":\"TradingSession\"},{\"kind\":1024,\"name\":\"lightstreamerEndpoint\",\"url\":\"interfaces/TradingSession.html#lightstreamerEndpoint\",\"classes\":\"\",\"parent\":\"TradingSession\"},{\"kind\":1024,\"name\":\"oauthToken\",\"url\":\"interfaces/TradingSession.html#oauthToken\",\"classes\":\"\",\"parent\":\"TradingSession\"},{\"kind\":1024,\"name\":\"timezoneOffset\",\"url\":\"interfaces/TradingSession.html#timezoneOffset\",\"classes\":\"\",\"parent\":\"TradingSession\"},{\"kind\":256,\"name\":\"SwitchAccountResponse\",\"url\":\"interfaces/SwitchAccountResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"dealingEnabled\",\"url\":\"interfaces/SwitchAccountResponse.html#dealingEnabled\",\"classes\":\"\",\"parent\":\"SwitchAccountResponse\"},{\"kind\":1024,\"name\":\"hasActiveDemoAccounts\",\"url\":\"interfaces/SwitchAccountResponse.html#hasActiveDemoAccounts\",\"classes\":\"\",\"parent\":\"SwitchAccountResponse\"},{\"kind\":1024,\"name\":\"hasActiveLiveAccounts\",\"url\":\"interfaces/SwitchAccountResponse.html#hasActiveLiveAccounts\",\"classes\":\"\",\"parent\":\"SwitchAccountResponse\"},{\"kind\":1024,\"name\":\"trailingStopsEnabled\",\"url\":\"interfaces/SwitchAccountResponse.html#trailingStopsEnabled\",\"classes\":\"\",\"parent\":\"SwitchAccountResponse\"},{\"kind\":128,\"name\":\"LoginAPI\",\"url\":\"classes/LoginAPI.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"URL\",\"url\":\"classes/LoginAPI.html#URL\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/LoginAPI.html#URL.__type\",\"classes\":\"\",\"parent\":\"LoginAPI.URL\"},{\"kind\":1024,\"name\":\"REFRESH_TOKEN\",\"url\":\"classes/LoginAPI.html#URL.__type.REFRESH_TOKEN\",\"classes\":\"\",\"parent\":\"LoginAPI.URL.__type\"},{\"kind\":1024,\"name\":\"SESSION\",\"url\":\"classes/LoginAPI.html#URL.__type.SESSION\",\"classes\":\"\",\"parent\":\"LoginAPI.URL.__type\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LoginAPI.html#constructor\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":2048,\"name\":\"createSession\",\"url\":\"classes/LoginAPI.html#createSession\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":2048,\"name\":\"switchAccount\",\"url\":\"classes/LoginAPI.html#switchAccount\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":2048,\"name\":\"getSessionToken\",\"url\":\"classes/LoginAPI.html#getSessionToken\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":2048,\"name\":\"createSessionFromToken\",\"url\":\"classes/LoginAPI.html#createSessionFromToken\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":2048,\"name\":\"createSessionFromMobileLogin\",\"url\":\"classes/LoginAPI.html#createSessionFromMobileLogin\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":2048,\"name\":\"getSession\",\"url\":\"classes/LoginAPI.html#getSession\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":2048,\"name\":\"login\",\"url\":\"classes/LoginAPI.html#login\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":2048,\"name\":\"logout\",\"url\":\"classes/LoginAPI.html#logout\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":2048,\"name\":\"refreshToken\",\"url\":\"classes/LoginAPI.html#refreshToken\",\"classes\":\"\",\"parent\":\"LoginAPI\"},{\"kind\":256,\"name\":\"Currency\",\"url\":\"interfaces/Currency.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"baseExchangeRate\",\"url\":\"interfaces/Currency.html#baseExchangeRate\",\"classes\":\"\",\"parent\":\"Currency\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/Currency.html#code\",\"classes\":\"\",\"parent\":\"Currency\"},{\"kind\":1024,\"name\":\"exchangeRate\",\"url\":\"interfaces/Currency.html#exchangeRate\",\"classes\":\"\",\"parent\":\"Currency\"},{\"kind\":1024,\"name\":\"isDefault\",\"url\":\"interfaces/Currency.html#isDefault\",\"classes\":\"\",\"parent\":\"Currency\"},{\"kind\":1024,\"name\":\"symbol\",\"url\":\"interfaces/Currency.html#symbol\",\"classes\":\"\",\"parent\":\"Currency\"},{\"kind\":256,\"name\":\"MarginDepositBand\",\"url\":\"interfaces/MarginDepositBand.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"currency\",\"url\":\"interfaces/MarginDepositBand.html#currency\",\"classes\":\"\",\"parent\":\"MarginDepositBand\"},{\"kind\":1024,\"name\":\"margin\",\"url\":\"interfaces/MarginDepositBand.html#margin\",\"classes\":\"\",\"parent\":\"MarginDepositBand\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"interfaces/MarginDepositBand.html#max\",\"classes\":\"\",\"parent\":\"MarginDepositBand\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"interfaces/MarginDepositBand.html#min\",\"classes\":\"\",\"parent\":\"MarginDepositBand\"},{\"kind\":256,\"name\":\"SlippageFactor\",\"url\":\"interfaces/SlippageFactor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"unit\",\"url\":\"interfaces/SlippageFactor.html#unit\",\"classes\":\"\",\"parent\":\"SlippageFactor\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/SlippageFactor.html#value\",\"classes\":\"\",\"parent\":\"SlippageFactor\"},{\"kind\":256,\"name\":\"LimitedRiskPremium\",\"url\":\"interfaces/LimitedRiskPremium.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"unit\",\"url\":\"interfaces/LimitedRiskPremium.html#unit\",\"classes\":\"\",\"parent\":\"LimitedRiskPremium\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/LimitedRiskPremium.html#value\",\"classes\":\"\",\"parent\":\"LimitedRiskPremium\"},{\"kind\":256,\"name\":\"ExpiryDetail\",\"url\":\"interfaces/ExpiryDetail.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"lastDealingDate\",\"url\":\"interfaces/ExpiryDetail.html#lastDealingDate\",\"classes\":\"\",\"parent\":\"ExpiryDetail\"},{\"kind\":1024,\"name\":\"settlementInfo\",\"url\":\"interfaces/ExpiryDetail.html#settlementInfo\",\"classes\":\"\",\"parent\":\"ExpiryDetail\"},{\"kind\":256,\"name\":\"RolloverDetail\",\"url\":\"interfaces/RolloverDetail.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"lastRolloverTime\",\"url\":\"interfaces/RolloverDetail.html#lastRolloverTime\",\"classes\":\"\",\"parent\":\"RolloverDetail\"},{\"kind\":1024,\"name\":\"rolloverInfo\",\"url\":\"interfaces/RolloverDetail.html#rolloverInfo\",\"classes\":\"\",\"parent\":\"RolloverDetail\"},{\"kind\":256,\"name\":\"Instrument\",\"url\":\"interfaces/Instrument.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"chartCode\",\"url\":\"interfaces/Instrument.html#chartCode\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"contractSize\",\"url\":\"interfaces/Instrument.html#contractSize\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"controlledRiskAllowed\",\"url\":\"interfaces/Instrument.html#controlledRiskAllowed\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"country\",\"url\":\"interfaces/Instrument.html#country\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"currencies\",\"url\":\"interfaces/Instrument.html#currencies\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"epic\",\"url\":\"interfaces/Instrument.html#epic\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"expiry\",\"url\":\"interfaces/Instrument.html#expiry\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"expiryDetails\",\"url\":\"interfaces/Instrument.html#expiryDetails\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"forceOpenAllowed\",\"url\":\"interfaces/Instrument.html#forceOpenAllowed\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"limitedRiskPremium\",\"url\":\"interfaces/Instrument.html#limitedRiskPremium\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"lotSize\",\"url\":\"interfaces/Instrument.html#lotSize\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"marginDepositBands\",\"url\":\"interfaces/Instrument.html#marginDepositBands\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"marginFactor\",\"url\":\"interfaces/Instrument.html#marginFactor\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"marginFactorUnit\",\"url\":\"interfaces/Instrument.html#marginFactorUnit\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"marketId\",\"url\":\"interfaces/Instrument.html#marketId\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/Instrument.html#name\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"newsCode\",\"url\":\"interfaces/Instrument.html#newsCode\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"onePipMeans\",\"url\":\"interfaces/Instrument.html#onePipMeans\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"openingHours\",\"url\":\"interfaces/Instrument.html#openingHours\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Instrument.html#openingHours.__type\",\"classes\":\"\",\"parent\":\"Instrument.openingHours\"},{\"kind\":1024,\"name\":\"marketTimes\",\"url\":\"interfaces/Instrument.html#openingHours.__type.marketTimes\",\"classes\":\"\",\"parent\":\"Instrument.openingHours.__type\"},{\"kind\":1024,\"name\":\"rolloverDetails\",\"url\":\"interfaces/Instrument.html#rolloverDetails\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"slippageFactor\",\"url\":\"interfaces/Instrument.html#slippageFactor\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"specialInfo\",\"url\":\"interfaces/Instrument.html#specialInfo\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"sprintMarketsMaximumExpiryTime\",\"url\":\"interfaces/Instrument.html#sprintMarketsMaximumExpiryTime\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"sprintMarketsMinimumExpiryTime\",\"url\":\"interfaces/Instrument.html#sprintMarketsMinimumExpiryTime\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"stopsLimitsAllowed\",\"url\":\"interfaces/Instrument.html#stopsLimitsAllowed\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"streamingPricesAvailable\",\"url\":\"interfaces/Instrument.html#streamingPricesAvailable\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/Instrument.html#type\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"unit\",\"url\":\"interfaces/Instrument.html#unit\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":1024,\"name\":\"valueOfOnePip\",\"url\":\"interfaces/Instrument.html#valueOfOnePip\",\"classes\":\"\",\"parent\":\"Instrument\"},{\"kind\":8,\"name\":\"InstrumentType\",\"url\":\"enums/InstrumentType.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"BUNGEE_COMMODITIES\",\"url\":\"enums/InstrumentType.html#BUNGEE_COMMODITIES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"BUNGEE_CURRENCIES\",\"url\":\"enums/InstrumentType.html#BUNGEE_CURRENCIES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"BUNGEE_INDICES\",\"url\":\"enums/InstrumentType.html#BUNGEE_INDICES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"COMMODITIES\",\"url\":\"enums/InstrumentType.html#COMMODITIES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"CURRENCIES\",\"url\":\"enums/InstrumentType.html#CURRENCIES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"INDICES\",\"url\":\"enums/InstrumentType.html#INDICES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"OPT_COMMODITIES\",\"url\":\"enums/InstrumentType.html#OPT_COMMODITIES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"OPT_CURRENCIES\",\"url\":\"enums/InstrumentType.html#OPT_CURRENCIES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"OPT_INDICES\",\"url\":\"enums/InstrumentType.html#OPT_INDICES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"OPT_RATES\",\"url\":\"enums/InstrumentType.html#OPT_RATES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"OPT_SHARES\",\"url\":\"enums/InstrumentType.html#OPT_SHARES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"RATES\",\"url\":\"enums/InstrumentType.html#RATES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"SECTORS\",\"url\":\"enums/InstrumentType.html#SECTORS\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"SHARES\",\"url\":\"enums/InstrumentType.html#SHARES\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"SPRINT_MARKET\",\"url\":\"enums/InstrumentType.html#SPRINT_MARKET\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"TEST_MARKET\",\"url\":\"enums/InstrumentType.html#TEST_MARKET\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":16,\"name\":\"UNKNOWN\",\"url\":\"enums/InstrumentType.html#UNKNOWN\",\"classes\":\"\",\"parent\":\"InstrumentType\"},{\"kind\":8,\"name\":\"InstrumentUnit\",\"url\":\"enums/InstrumentUnit.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"AMOUNT\",\"url\":\"enums/InstrumentUnit.html#AMOUNT\",\"classes\":\"\",\"parent\":\"InstrumentUnit\"},{\"kind\":16,\"name\":\"CONTRACTS\",\"url\":\"enums/InstrumentUnit.html#CONTRACTS\",\"classes\":\"\",\"parent\":\"InstrumentUnit\"},{\"kind\":16,\"name\":\"SHARES\",\"url\":\"enums/InstrumentUnit.html#SHARES\",\"classes\":\"\",\"parent\":\"InstrumentUnit\"},{\"kind\":256,\"name\":\"MinStepDistance\",\"url\":\"interfaces/MinStepDistance.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"unit\",\"url\":\"interfaces/MinStepDistance.html#unit\",\"classes\":\"\",\"parent\":\"MinStepDistance\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/MinStepDistance.html#value\",\"classes\":\"\",\"parent\":\"MinStepDistance\"},{\"kind\":256,\"name\":\"MinDealSize\",\"url\":\"interfaces/MinDealSize.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"unit\",\"url\":\"interfaces/MinDealSize.html#unit\",\"classes\":\"\",\"parent\":\"MinDealSize\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/MinDealSize.html#value\",\"classes\":\"\",\"parent\":\"MinDealSize\"},{\"kind\":256,\"name\":\"MinControlledRiskStopDistance\",\"url\":\"interfaces/MinControlledRiskStopDistance.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"unit\",\"url\":\"interfaces/MinControlledRiskStopDistance.html#unit\",\"classes\":\"\",\"parent\":\"MinControlledRiskStopDistance\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/MinControlledRiskStopDistance.html#value\",\"classes\":\"\",\"parent\":\"MinControlledRiskStopDistance\"},{\"kind\":256,\"name\":\"MinNormalStopOrLimitDistance\",\"url\":\"interfaces/MinNormalStopOrLimitDistance.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"unit\",\"url\":\"interfaces/MinNormalStopOrLimitDistance.html#unit\",\"classes\":\"\",\"parent\":\"MinNormalStopOrLimitDistance\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/MinNormalStopOrLimitDistance.html#value\",\"classes\":\"\",\"parent\":\"MinNormalStopOrLimitDistance\"},{\"kind\":256,\"name\":\"MaxStopOrLimitDistance\",\"url\":\"interfaces/MaxStopOrLimitDistance.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"unit\",\"url\":\"interfaces/MaxStopOrLimitDistance.html#unit\",\"classes\":\"\",\"parent\":\"MaxStopOrLimitDistance\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/MaxStopOrLimitDistance.html#value\",\"classes\":\"\",\"parent\":\"MaxStopOrLimitDistance\"},{\"kind\":256,\"name\":\"DealingRules\",\"url\":\"interfaces/DealingRules.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"marketOrderPreference\",\"url\":\"interfaces/DealingRules.html#marketOrderPreference\",\"classes\":\"\",\"parent\":\"DealingRules\"},{\"kind\":1024,\"name\":\"maxStopOrLimitDistance\",\"url\":\"interfaces/DealingRules.html#maxStopOrLimitDistance\",\"classes\":\"\",\"parent\":\"DealingRules\"},{\"kind\":1024,\"name\":\"minControlledRiskStopDistance\",\"url\":\"interfaces/DealingRules.html#minControlledRiskStopDistance\",\"classes\":\"\",\"parent\":\"DealingRules\"},{\"kind\":1024,\"name\":\"minDealSize\",\"url\":\"interfaces/DealingRules.html#minDealSize\",\"classes\":\"\",\"parent\":\"DealingRules\"},{\"kind\":1024,\"name\":\"minNormalStopOrLimitDistance\",\"url\":\"interfaces/DealingRules.html#minNormalStopOrLimitDistance\",\"classes\":\"\",\"parent\":\"DealingRules\"},{\"kind\":1024,\"name\":\"minStepDistance\",\"url\":\"interfaces/DealingRules.html#minStepDistance\",\"classes\":\"\",\"parent\":\"DealingRules\"},{\"kind\":1024,\"name\":\"trailingStopsPreference\",\"url\":\"interfaces/DealingRules.html#trailingStopsPreference\",\"classes\":\"\",\"parent\":\"DealingRules\"},{\"kind\":8,\"name\":\"MarketOrderPreference\",\"url\":\"enums/MarketOrderPreference.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"AVAILABLE_DEFAULT_OFF\",\"url\":\"enums/MarketOrderPreference.html#AVAILABLE_DEFAULT_OFF\",\"classes\":\"\",\"parent\":\"MarketOrderPreference\"},{\"kind\":16,\"name\":\"AVAILABLE_DEFAULT_ON\",\"url\":\"enums/MarketOrderPreference.html#AVAILABLE_DEFAULT_ON\",\"classes\":\"\",\"parent\":\"MarketOrderPreference\"},{\"kind\":16,\"name\":\"NOT_AVAILABLE\",\"url\":\"enums/MarketOrderPreference.html#NOT_AVAILABLE\",\"classes\":\"\",\"parent\":\"MarketOrderPreference\"},{\"kind\":8,\"name\":\"TrailingStopPreference\",\"url\":\"enums/TrailingStopPreference.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"AVAILABLE\",\"url\":\"enums/TrailingStopPreference.html#AVAILABLE\",\"classes\":\"\",\"parent\":\"TrailingStopPreference\"},{\"kind\":16,\"name\":\"NOT_AVAILABLE\",\"url\":\"enums/TrailingStopPreference.html#NOT_AVAILABLE\",\"classes\":\"\",\"parent\":\"TrailingStopPreference\"},{\"kind\":256,\"name\":\"Snapshot\",\"url\":\"interfaces/Snapshot.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bid\",\"url\":\"interfaces/Snapshot.html#bid\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"binaryOdds\",\"url\":\"interfaces/Snapshot.html#binaryOdds\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"controlledRiskExtraSpread\",\"url\":\"interfaces/Snapshot.html#controlledRiskExtraSpread\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"decimalPlacesFactor\",\"url\":\"interfaces/Snapshot.html#decimalPlacesFactor\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"delayTime\",\"url\":\"interfaces/Snapshot.html#delayTime\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"high\",\"url\":\"interfaces/Snapshot.html#high\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"low\",\"url\":\"interfaces/Snapshot.html#low\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"marketStatus\",\"url\":\"interfaces/Snapshot.html#marketStatus\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"netChange\",\"url\":\"interfaces/Snapshot.html#netChange\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"offer\",\"url\":\"interfaces/Snapshot.html#offer\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"percentageChange\",\"url\":\"interfaces/Snapshot.html#percentageChange\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"scalingFactor\",\"url\":\"interfaces/Snapshot.html#scalingFactor\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":1024,\"name\":\"updateTime\",\"url\":\"interfaces/Snapshot.html#updateTime\",\"classes\":\"\",\"parent\":\"Snapshot\"},{\"kind\":8,\"name\":\"MarketStatus\",\"url\":\"enums/MarketStatus.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"CLOSED\",\"url\":\"enums/MarketStatus.html#CLOSED\",\"classes\":\"\",\"parent\":\"MarketStatus\"},{\"kind\":16,\"name\":\"EDITS_ONLY\",\"url\":\"enums/MarketStatus.html#EDITS_ONLY\",\"classes\":\"\",\"parent\":\"MarketStatus\"},{\"kind\":16,\"name\":\"OFFLINE\",\"url\":\"enums/MarketStatus.html#OFFLINE\",\"classes\":\"\",\"parent\":\"MarketStatus\"},{\"kind\":16,\"name\":\"ON_AUCTION\",\"url\":\"enums/MarketStatus.html#ON_AUCTION\",\"classes\":\"\",\"parent\":\"MarketStatus\"},{\"kind\":16,\"name\":\"ON_AUCTION_NO_EDITS\",\"url\":\"enums/MarketStatus.html#ON_AUCTION_NO_EDITS\",\"classes\":\"\",\"parent\":\"MarketStatus\"},{\"kind\":16,\"name\":\"SUSPENDED\",\"url\":\"enums/MarketStatus.html#SUSPENDED\",\"classes\":\"\",\"parent\":\"MarketStatus\"},{\"kind\":16,\"name\":\"TRADEABLE\",\"url\":\"enums/MarketStatus.html#TRADEABLE\",\"classes\":\"\",\"parent\":\"MarketStatus\"},{\"kind\":256,\"name\":\"MarketDetail\",\"url\":\"interfaces/MarketDetail.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"dealingRules\",\"url\":\"interfaces/MarketDetail.html#dealingRules\",\"classes\":\"\",\"parent\":\"MarketDetail\"},{\"kind\":1024,\"name\":\"instrument\",\"url\":\"interfaces/MarketDetail.html#instrument\",\"classes\":\"\",\"parent\":\"MarketDetail\"},{\"kind\":1024,\"name\":\"snapshot\",\"url\":\"interfaces/MarketDetail.html#snapshot\",\"classes\":\"\",\"parent\":\"MarketDetail\"},{\"kind\":4194304,\"name\":\"MarketDetails\",\"url\":\"types/MarketDetails.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MarketDetails.html#__type\",\"classes\":\"\",\"parent\":\"MarketDetails\"},{\"kind\":1024,\"name\":\"marketDetails\",\"url\":\"types/MarketDetails.html#__type.marketDetails\",\"classes\":\"\",\"parent\":\"MarketDetails.__type\"},{\"kind\":256,\"name\":\"MarketNode\",\"url\":\"interfaces/MarketNode.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/MarketNode.html#id\",\"classes\":\"\",\"parent\":\"MarketNode\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/MarketNode.html#name\",\"classes\":\"\",\"parent\":\"MarketNode\"},{\"kind\":256,\"name\":\"MarketNavigation\",\"url\":\"interfaces/MarketNavigation.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"markets\",\"url\":\"interfaces/MarketNavigation.html#markets\",\"classes\":\"\",\"parent\":\"MarketNavigation\"},{\"kind\":1024,\"name\":\"nodes\",\"url\":\"interfaces/MarketNavigation.html#nodes\",\"classes\":\"\",\"parent\":\"MarketNavigation\"},{\"kind\":256,\"name\":\"Market\",\"url\":\"interfaces/Market.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"bid\",\"url\":\"interfaces/Market.html#bid\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"delayTime\",\"url\":\"interfaces/Market.html#delayTime\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"epic\",\"url\":\"interfaces/Market.html#epic\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"expiry\",\"url\":\"interfaces/Market.html#expiry\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"high\",\"url\":\"interfaces/Market.html#high\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"instrumentName\",\"url\":\"interfaces/Market.html#instrumentName\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"instrumentType\",\"url\":\"interfaces/Market.html#instrumentType\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"low\",\"url\":\"interfaces/Market.html#low\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"marketStatus\",\"url\":\"interfaces/Market.html#marketStatus\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"netChange\",\"url\":\"interfaces/Market.html#netChange\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"offer\",\"url\":\"interfaces/Market.html#offer\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"percentageChange\",\"url\":\"interfaces/Market.html#percentageChange\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"scalingFactor\",\"url\":\"interfaces/Market.html#scalingFactor\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"streamingPricesAvailable\",\"url\":\"interfaces/Market.html#streamingPricesAvailable\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"updateTime\",\"url\":\"interfaces/Market.html#updateTime\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":1024,\"name\":\"updateTimeUTC\",\"url\":\"interfaces/Market.html#updateTimeUTC\",\"classes\":\"\",\"parent\":\"Market\"},{\"kind\":256,\"name\":\"MarketSearch\",\"url\":\"interfaces/MarketSearch.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"markets\",\"url\":\"interfaces/MarketSearch.html#markets\",\"classes\":\"\",\"parent\":\"MarketSearch\"},{\"kind\":128,\"name\":\"MarketAPI\",\"url\":\"classes/MarketAPI.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"URL\",\"url\":\"classes/MarketAPI.html#URL\",\"classes\":\"\",\"parent\":\"MarketAPI\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/MarketAPI.html#URL.__type\",\"classes\":\"\",\"parent\":\"MarketAPI.URL\"},{\"kind\":1024,\"name\":\"MARKETNAVIGATION\",\"url\":\"classes/MarketAPI.html#URL.__type.MARKETNAVIGATION\",\"classes\":\"\",\"parent\":\"MarketAPI.URL.__type\"},{\"kind\":1024,\"name\":\"MARKETS\",\"url\":\"classes/MarketAPI.html#URL.__type.MARKETS\",\"classes\":\"\",\"parent\":\"MarketAPI.URL.__type\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MarketAPI.html#constructor\",\"classes\":\"\",\"parent\":\"MarketAPI\"},{\"kind\":1024,\"name\":\"price\",\"url\":\"classes/MarketAPI.html#price\",\"classes\":\"\",\"parent\":\"MarketAPI\"},{\"kind\":2048,\"name\":\"searchMarkets\",\"url\":\"classes/MarketAPI.html#searchMarkets\",\"classes\":\"\",\"parent\":\"MarketAPI\"},{\"kind\":2048,\"name\":\"getMarketCategories\",\"url\":\"classes/MarketAPI.html#getMarketCategories\",\"classes\":\"\",\"parent\":\"MarketAPI\"},{\"kind\":2048,\"name\":\"getMarketDetails\",\"url\":\"classes/MarketAPI.html#getMarketDetails\",\"classes\":\"\",\"parent\":\"MarketAPI\"},{\"kind\":256,\"name\":\"BidAsk\",\"url\":\"interfaces/BidAsk.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"ask\",\"url\":\"interfaces/BidAsk.html#ask\",\"classes\":\"\",\"parent\":\"BidAsk\"},{\"kind\":1024,\"name\":\"bid\",\"url\":\"interfaces/BidAsk.html#bid\",\"classes\":\"\",\"parent\":\"BidAsk\"},{\"kind\":1024,\"name\":\"lastTraded\",\"url\":\"interfaces/BidAsk.html#lastTraded\",\"classes\":\"\",\"parent\":\"BidAsk\"},{\"kind\":256,\"name\":\"CandleStick\",\"url\":\"interfaces/CandleStick.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"closePrice\",\"url\":\"interfaces/CandleStick.html#closePrice\",\"classes\":\"\",\"parent\":\"CandleStick\"},{\"kind\":1024,\"name\":\"highPrice\",\"url\":\"interfaces/CandleStick.html#highPrice\",\"classes\":\"\",\"parent\":\"CandleStick\"},{\"kind\":1024,\"name\":\"lastTradedVolume\",\"url\":\"interfaces/CandleStick.html#lastTradedVolume\",\"classes\":\"\",\"parent\":\"CandleStick\"},{\"kind\":1024,\"name\":\"lowPrice\",\"url\":\"interfaces/CandleStick.html#lowPrice\",\"classes\":\"\",\"parent\":\"CandleStick\"},{\"kind\":1024,\"name\":\"openPrice\",\"url\":\"interfaces/CandleStick.html#openPrice\",\"classes\":\"\",\"parent\":\"CandleStick\"},{\"kind\":1024,\"name\":\"snapshotTime\",\"url\":\"interfaces/CandleStick.html#snapshotTime\",\"classes\":\"\",\"parent\":\"CandleStick\"},{\"kind\":1024,\"name\":\"snapshotTimeUTC\",\"url\":\"interfaces/CandleStick.html#snapshotTimeUTC\",\"classes\":\"\",\"parent\":\"CandleStick\"},{\"kind\":256,\"name\":\"HistoricalPricesAllowance\",\"url\":\"interfaces/HistoricalPricesAllowance.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"allowanceExpiry\",\"url\":\"interfaces/HistoricalPricesAllowance.html#allowanceExpiry\",\"classes\":\"\",\"parent\":\"HistoricalPricesAllowance\"},{\"kind\":1024,\"name\":\"remainingAllowance\",\"url\":\"interfaces/HistoricalPricesAllowance.html#remainingAllowance\",\"classes\":\"\",\"parent\":\"HistoricalPricesAllowance\"},{\"kind\":1024,\"name\":\"totalAllowance\",\"url\":\"interfaces/HistoricalPricesAllowance.html#totalAllowance\",\"classes\":\"\",\"parent\":\"HistoricalPricesAllowance\"},{\"kind\":256,\"name\":\"HistoricalPricesMetadata\",\"url\":\"interfaces/HistoricalPricesMetadata.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"allowance\",\"url\":\"interfaces/HistoricalPricesMetadata.html#allowance\",\"classes\":\"\",\"parent\":\"HistoricalPricesMetadata\"},{\"kind\":1024,\"name\":\"pageData\",\"url\":\"interfaces/HistoricalPricesMetadata.html#pageData\",\"classes\":\"\",\"parent\":\"HistoricalPricesMetadata\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/HistoricalPricesMetadata.html#size\",\"classes\":\"\",\"parent\":\"HistoricalPricesMetadata\"},{\"kind\":256,\"name\":\"HistoricalPricesPagination\",\"url\":\"interfaces/HistoricalPricesPagination.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"pageNumber\",\"url\":\"interfaces/HistoricalPricesPagination.html#pageNumber\",\"classes\":\"\",\"parent\":\"HistoricalPricesPagination\"},{\"kind\":1024,\"name\":\"pageSize\",\"url\":\"interfaces/HistoricalPricesPagination.html#pageSize\",\"classes\":\"\",\"parent\":\"HistoricalPricesPagination\"},{\"kind\":1024,\"name\":\"totalPages\",\"url\":\"interfaces/HistoricalPricesPagination.html#totalPages\",\"classes\":\"\",\"parent\":\"HistoricalPricesPagination\"},{\"kind\":256,\"name\":\"HistoricalPricesResponse\",\"url\":\"interfaces/HistoricalPricesResponse.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"instrumentType\",\"url\":\"interfaces/HistoricalPricesResponse.html#instrumentType\",\"classes\":\"\",\"parent\":\"HistoricalPricesResponse\"},{\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/HistoricalPricesResponse.html#metadata\",\"classes\":\"\",\"parent\":\"HistoricalPricesResponse\"},{\"kind\":1024,\"name\":\"prices\",\"url\":\"interfaces/HistoricalPricesResponse.html#prices\",\"classes\":\"\",\"parent\":\"HistoricalPricesResponse\"},{\"kind\":8,\"name\":\"Resolution\",\"url\":\"enums/Resolution.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"DAY\",\"url\":\"enums/Resolution.html#DAY\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"HOUR\",\"url\":\"enums/Resolution.html#HOUR\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"HOUR_2\",\"url\":\"enums/Resolution.html#HOUR_2\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"HOUR_3\",\"url\":\"enums/Resolution.html#HOUR_3\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"HOUR_4\",\"url\":\"enums/Resolution.html#HOUR_4\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"MINUTE\",\"url\":\"enums/Resolution.html#MINUTE\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"MINUTE_10\",\"url\":\"enums/Resolution.html#MINUTE_10\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"MINUTE_15\",\"url\":\"enums/Resolution.html#MINUTE_15\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"MINUTE_2\",\"url\":\"enums/Resolution.html#MINUTE_2\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"MINUTE_3\",\"url\":\"enums/Resolution.html#MINUTE_3\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"MINUTE_30\",\"url\":\"enums/Resolution.html#MINUTE_30\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"MINUTE_5\",\"url\":\"enums/Resolution.html#MINUTE_5\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"MONTH\",\"url\":\"enums/Resolution.html#MONTH\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"SECOND\",\"url\":\"enums/Resolution.html#SECOND\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":16,\"name\":\"WEEK\",\"url\":\"enums/Resolution.html#WEEK\",\"classes\":\"\",\"parent\":\"Resolution\"},{\"kind\":8,\"name\":\"ResolutionInMillis\",\"url\":\"enums/ResolutionInMillis.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"DAY\",\"url\":\"enums/ResolutionInMillis.html#DAY\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"HOUR\",\"url\":\"enums/ResolutionInMillis.html#HOUR\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"HOUR_2\",\"url\":\"enums/ResolutionInMillis.html#HOUR_2\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"HOUR_3\",\"url\":\"enums/ResolutionInMillis.html#HOUR_3\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"HOUR_4\",\"url\":\"enums/ResolutionInMillis.html#HOUR_4\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"MINUTE\",\"url\":\"enums/ResolutionInMillis.html#MINUTE\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"MINUTE_10\",\"url\":\"enums/ResolutionInMillis.html#MINUTE_10\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"MINUTE_15\",\"url\":\"enums/ResolutionInMillis.html#MINUTE_15\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"MINUTE_2\",\"url\":\"enums/ResolutionInMillis.html#MINUTE_2\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"MINUTE_3\",\"url\":\"enums/ResolutionInMillis.html#MINUTE_3\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"MINUTE_30\",\"url\":\"enums/ResolutionInMillis.html#MINUTE_30\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"MINUTE_5\",\"url\":\"enums/ResolutionInMillis.html#MINUTE_5\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"MONTH\",\"url\":\"enums/ResolutionInMillis.html#MONTH\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"SECOND\",\"url\":\"enums/ResolutionInMillis.html#SECOND\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":16,\"name\":\"WEEK\",\"url\":\"enums/ResolutionInMillis.html#WEEK\",\"classes\":\"\",\"parent\":\"ResolutionInMillis\"},{\"kind\":128,\"name\":\"PriceAPI\",\"url\":\"classes/PriceAPI.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"URL\",\"url\":\"classes/PriceAPI.html#URL\",\"classes\":\"\",\"parent\":\"PriceAPI\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/PriceAPI.html#URL.__type\",\"classes\":\"\",\"parent\":\"PriceAPI.URL\"},{\"kind\":1024,\"name\":\"PRICES\",\"url\":\"classes/PriceAPI.html#URL.__type.PRICES\",\"classes\":\"\",\"parent\":\"PriceAPI.URL.__type\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/PriceAPI.html#constructor\",\"classes\":\"\",\"parent\":\"PriceAPI\"},{\"kind\":2048,\"name\":\"getPricesBetweenDates\",\"url\":\"classes/PriceAPI.html#getPricesBetweenDates\",\"classes\":\"\",\"parent\":\"PriceAPI\"},{\"kind\":2048,\"name\":\"getPrices\",\"url\":\"classes/PriceAPI.html#getPrices\",\"classes\":\"\",\"parent\":\"PriceAPI\"},{\"kind\":8388608,\"name\":\"default\",\"url\":\"modules.html#default\",\"classes\":\"\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,59.998]],[\"comment/0\",[]],[\"name/1\",[1,59.998]],[\"comment/1\",[]],[\"name/2\",[2,59.998]],[\"comment/2\",[]],[\"name/3\",[3,45.334]],[\"comment/3\",[]],[\"name/4\",[4,59.998]],[\"comment/4\",[]],[\"name/5\",[5,59.998]],[\"comment/5\",[]],[\"name/6\",[6,59.998]],[\"comment/6\",[]],[\"name/7\",[7,59.998]],[\"comment/7\",[]],[\"name/8\",[8,59.998]],[\"comment/8\",[]],[\"name/9\",[9,59.998]],[\"comment/9\",[]],[\"name/10\",[10,59.998]],[\"comment/10\",[]],[\"name/11\",[11,54.889]],[\"comment/11\",[]],[\"name/12\",[12,59.998]],[\"comment/12\",[]],[\"name/13\",[13,59.998]],[\"comment/13\",[]],[\"name/14\",[14,59.998]],[\"comment/14\",[]],[\"name/15\",[15,54.889]],[\"comment/15\",[]],[\"name/16\",[16,59.998]],[\"comment/16\",[]],[\"name/17\",[17,59.998]],[\"comment/17\",[]],[\"name/18\",[18,54.889]],[\"comment/18\",[]],[\"name/19\",[19,59.998]],[\"comment/19\",[]],[\"name/20\",[20,54.889]],[\"comment/20\",[]],[\"name/21\",[21,59.998]],[\"comment/21\",[]],[\"name/22\",[22,59.998]],[\"comment/22\",[]],[\"name/23\",[23,59.998]],[\"comment/23\",[]],[\"name/24\",[24,59.998]],[\"comment/24\",[]],[\"name/25\",[25,54.889]],[\"comment/25\",[]],[\"name/26\",[26,59.998]],[\"comment/26\",[]],[\"name/27\",[27,54.889]],[\"comment/27\",[]],[\"name/28\",[28,59.998]],[\"comment/28\",[]],[\"name/29\",[29,59.998]],[\"comment/29\",[]],[\"name/30\",[30,59.998]],[\"comment/30\",[]],[\"name/31\",[31,59.998]],[\"comment/31\",[]],[\"name/32\",[32,59.998]],[\"comment/32\",[]],[\"name/33\",[33,59.998]],[\"comment/33\",[]],[\"name/34\",[34,59.998]],[\"comment/34\",[]],[\"name/35\",[35,59.998]],[\"comment/35\",[]],[\"name/36\",[36,59.998]],[\"comment/36\",[]],[\"name/37\",[37,59.998]],[\"comment/37\",[]],[\"name/38\",[38,59.998]],[\"comment/38\",[]],[\"name/39\",[39,59.998]],[\"comment/39\",[]],[\"name/40\",[40,59.998]],[\"comment/40\",[]],[\"name/41\",[41,59.998]],[\"comment/41\",[]],[\"name/42\",[42,59.998]],[\"comment/42\",[]],[\"name/43\",[43,59.998]],[\"comment/43\",[]],[\"name/44\",[44,51.525]],[\"comment/44\",[]],[\"name/45\",[45,59.998]],[\"comment/45\",[]],[\"name/46\",[46,59.998]],[\"comment/46\",[]],[\"name/47\",[47,54.889]],[\"comment/47\",[]],[\"name/48\",[48,54.889]],[\"comment/48\",[]],[\"name/49\",[44,51.525]],[\"comment/49\",[]],[\"name/50\",[49,59.998]],[\"comment/50\",[]],[\"name/51\",[50,59.998]],[\"comment/51\",[]],[\"name/52\",[51,51.525]],[\"comment/52\",[]],[\"name/53\",[25,54.889]],[\"comment/53\",[]],[\"name/54\",[52,59.998]],[\"comment/54\",[]],[\"name/55\",[53,51.525]],[\"comment/55\",[]],[\"name/56\",[54,54.889]],[\"comment/56\",[]],[\"name/57\",[53,51.525]],[\"comment/57\",[]],[\"name/58\",[18,54.889]],[\"comment/58\",[]],[\"name/59\",[55,59.998]],[\"comment/59\",[]],[\"name/60\",[56,59.998]],[\"comment/60\",[]],[\"name/61\",[57,59.998]],[\"comment/61\",[]],[\"name/62\",[58,54.889]],[\"comment/62\",[]],[\"name/63\",[59,59.998]],[\"comment/63\",[]],[\"name/64\",[11,54.889]],[\"comment/64\",[]],[\"name/65\",[53,51.525]],[\"comment/65\",[]],[\"name/66\",[60,59.998]],[\"comment/66\",[]],[\"name/67\",[61,59.998]],[\"comment/67\",[]],[\"name/68\",[62,45.334]],[\"comment/68\",[]],[\"name/69\",[63,59.998]],[\"comment/69\",[]],[\"name/70\",[64,47.005]],[\"comment/70\",[]],[\"name/71\",[65,59.998]],[\"comment/71\",[]],[\"name/72\",[66,54.889]],[\"comment/72\",[]],[\"name/73\",[67,59.998]],[\"comment/73\",[]],[\"name/74\",[27,54.889]],[\"comment/74\",[]],[\"name/75\",[68,59.998]],[\"comment/75\",[]],[\"name/76\",[69,54.889]],[\"comment/76\",[]],[\"name/77\",[70,59.998]],[\"comment/77\",[]],[\"name/78\",[62,45.334]],[\"comment/78\",[]],[\"name/79\",[71,49.012]],[\"comment/79\",[]],[\"name/80\",[72,42.652]],[\"comment/80\",[]],[\"name/81\",[73,47.005]],[\"comment/81\",[]],[\"name/82\",[74,47.005]],[\"comment/82\",[]],[\"name/83\",[75,43.903]],[\"comment/83\",[]],[\"name/84\",[76,45.334]],[\"comment/84\",[]],[\"name/85\",[77,43.903]],[\"comment/85\",[]],[\"name/86\",[78,59.998]],[\"comment/86\",[]],[\"name/87\",[79,40.539]],[\"comment/87\",[]],[\"name/88\",[80,45.334]],[\"comment/88\",[]],[\"name/89\",[81,43.903]],[\"comment/89\",[]],[\"name/90\",[82,54.889]],[\"comment/90\",[]],[\"name/91\",[83,51.525]],[\"comment/91\",[]],[\"name/92\",[84,59.998]],[\"comment/92\",[]],[\"name/93\",[20,54.889]],[\"comment/93\",[]],[\"name/94\",[85,51.525]],[\"comment/94\",[]],[\"name/95\",[86,43.903]],[\"comment/95\",[]],[\"name/96\",[87,59.998]],[\"comment/96\",[]],[\"name/97\",[69,54.889]],[\"comment/97\",[]],[\"name/98\",[88,42.652]],[\"comment/98\",[]],[\"name/99\",[89,54.889]],[\"comment/99\",[]],[\"name/100\",[64,47.005]],[\"comment/100\",[]],[\"name/101\",[90,47.005]],[\"comment/101\",[]],[\"name/102\",[91,59.998]],[\"comment/102\",[]],[\"name/103\",[92,59.998]],[\"comment/103\",[]],[\"name/104\",[79,40.539]],[\"comment/104\",[]],[\"name/105\",[93,59.998]],[\"comment/105\",[]],[\"name/106\",[94,59.998]],[\"comment/106\",[]],[\"name/107\",[95,59.998]],[\"comment/107\",[]],[\"name/108\",[86,43.903]],[\"comment/108\",[]],[\"name/109\",[96,59.998]],[\"comment/109\",[]],[\"name/110\",[97,59.998]],[\"comment/110\",[]],[\"name/111\",[98,54.889]],[\"comment/111\",[]],[\"name/112\",[99,49.012]],[\"comment/112\",[]],[\"name/113\",[100,54.889]],[\"comment/113\",[]],[\"name/114\",[101,59.998]],[\"comment/114\",[]],[\"name/115\",[102,59.998]],[\"comment/115\",[]],[\"name/116\",[103,51.525]],[\"comment/116\",[]],[\"name/117\",[104,59.998]],[\"comment/117\",[]],[\"name/118\",[105,59.998]],[\"comment/118\",[]],[\"name/119\",[106,59.998]],[\"comment/119\",[]],[\"name/120\",[62,45.334]],[\"comment/120\",[]],[\"name/121\",[85,51.525]],[\"comment/121\",[]],[\"name/122\",[107,59.998]],[\"comment/122\",[]],[\"name/123\",[108,54.889]],[\"comment/123\",[]],[\"name/124\",[109,59.998]],[\"comment/124\",[]],[\"name/125\",[110,59.998]],[\"comment/125\",[]],[\"name/126\",[89,54.889]],[\"comment/126\",[]],[\"name/127\",[111,59.998]],[\"comment/127\",[]],[\"name/128\",[112,59.998]],[\"comment/128\",[]],[\"name/129\",[79,40.539]],[\"comment/129\",[]],[\"name/130\",[15,54.889]],[\"comment/130\",[]],[\"name/131\",[113,59.998]],[\"comment/131\",[]],[\"name/132\",[114,51.525]],[\"comment/132\",[]],[\"name/133\",[99,49.012]],[\"comment/133\",[]],[\"name/134\",[115,54.889]],[\"comment/134\",[]],[\"name/135\",[116,59.998]],[\"comment/135\",[]],[\"name/136\",[117,54.889]],[\"comment/136\",[]],[\"name/137\",[79,40.539]],[\"comment/137\",[]],[\"name/138\",[118,59.998]],[\"comment/138\",[]],[\"name/139\",[98,54.889]],[\"comment/139\",[]],[\"name/140\",[119,59.998]],[\"comment/140\",[]],[\"name/141\",[114,51.525]],[\"comment/141\",[]],[\"name/142\",[99,49.012]],[\"comment/142\",[]],[\"name/143\",[100,54.889]],[\"comment/143\",[]],[\"name/144\",[90,47.005]],[\"comment/144\",[]],[\"name/145\",[120,59.998]],[\"comment/145\",[]],[\"name/146\",[103,51.525]],[\"comment/146\",[]],[\"name/147\",[121,59.998]],[\"comment/147\",[]],[\"name/148\",[122,59.998]],[\"comment/148\",[]],[\"name/149\",[123,47.005]],[\"comment/149\",[]],[\"name/150\",[124,43.903]],[\"comment/150\",[]],[\"name/151\",[66,54.889]],[\"comment/151\",[]],[\"name/152\",[125,59.998]],[\"comment/152\",[]],[\"name/153\",[126,59.998]],[\"comment/153\",[]],[\"name/154\",[3,45.334]],[\"comment/154\",[]],[\"name/155\",[127,59.998]],[\"comment/155\",[]],[\"name/156\",[128,59.998]],[\"comment/156\",[]],[\"name/157\",[129,59.998]],[\"comment/157\",[]],[\"name/158\",[72,42.652]],[\"comment/158\",[]],[\"name/159\",[130,59.998]],[\"comment/159\",[]],[\"name/160\",[131,59.998]],[\"comment/160\",[]],[\"name/161\",[132,59.998]],[\"comment/161\",[]],[\"name/162\",[133,54.889]],[\"comment/162\",[]],[\"name/163\",[134,51.525]],[\"comment/163\",[]],[\"name/164\",[135,59.998]],[\"comment/164\",[]],[\"name/165\",[136,59.998]],[\"comment/165\",[]],[\"name/166\",[137,59.998]],[\"comment/166\",[]],[\"name/167\",[138,59.998]],[\"comment/167\",[]],[\"name/168\",[139,49.012]],[\"comment/168\",[]],[\"name/169\",[133,54.889]],[\"comment/169\",[]],[\"name/170\",[140,59.998]],[\"comment/170\",[]],[\"name/171\",[141,59.998]],[\"comment/171\",[]],[\"name/172\",[142,59.998]],[\"comment/172\",[]],[\"name/173\",[143,59.998]],[\"comment/173\",[]],[\"name/174\",[144,59.998]],[\"comment/174\",[]],[\"name/175\",[145,54.889]],[\"comment/175\",[]],[\"name/176\",[146,54.889]],[\"comment/176\",[]],[\"name/177\",[147,59.998]],[\"comment/177\",[]],[\"name/178\",[148,59.998]],[\"comment/178\",[]],[\"name/179\",[149,54.889]],[\"comment/179\",[]],[\"name/180\",[150,54.889]],[\"comment/180\",[]],[\"name/181\",[47,54.889]],[\"comment/181\",[]],[\"name/182\",[48,54.889]],[\"comment/182\",[]],[\"name/183\",[64,47.005]],[\"comment/183\",[]],[\"name/184\",[145,54.889]],[\"comment/184\",[]],[\"name/185\",[151,54.889]],[\"comment/185\",[]],[\"name/186\",[146,54.889]],[\"comment/186\",[]],[\"name/187\",[152,59.998]],[\"comment/187\",[]],[\"name/188\",[149,54.889]],[\"comment/188\",[]],[\"name/189\",[51,51.525]],[\"comment/189\",[]],[\"name/190\",[153,54.889]],[\"comment/190\",[]],[\"name/191\",[154,59.998]],[\"comment/191\",[]],[\"name/192\",[155,54.889]],[\"comment/192\",[]],[\"name/193\",[156,54.889]],[\"comment/193\",[]],[\"name/194\",[62,45.334]],[\"comment/194\",[]],[\"name/195\",[86,43.903]],[\"comment/195\",[]],[\"name/196\",[71,49.012]],[\"comment/196\",[]],[\"name/197\",[72,42.652]],[\"comment/197\",[]],[\"name/198\",[75,43.903]],[\"comment/198\",[]],[\"name/199\",[77,43.903]],[\"comment/199\",[]],[\"name/200\",[79,40.539]],[\"comment/200\",[]],[\"name/201\",[81,43.903]],[\"comment/201\",[]],[\"name/202\",[82,54.889]],[\"comment/202\",[]],[\"name/203\",[83,51.525]],[\"comment/203\",[]],[\"name/204\",[157,59.998]],[\"comment/204\",[]],[\"name/205\",[134,51.525]],[\"comment/205\",[]],[\"name/206\",[51,51.525]],[\"comment/206\",[]],[\"name/207\",[158,59.998]],[\"comment/207\",[]],[\"name/208\",[159,54.889]],[\"comment/208\",[]],[\"name/209\",[160,59.998]],[\"comment/209\",[]],[\"name/210\",[161,51.525]],[\"comment/210\",[]],[\"name/211\",[72,42.652]],[\"comment/211\",[]],[\"name/212\",[88,42.652]],[\"comment/212\",[]],[\"name/213\",[162,45.334]],[\"comment/213\",[]],[\"name/214\",[163,54.889]],[\"comment/214\",[]],[\"name/215\",[73,47.005]],[\"comment/215\",[]],[\"name/216\",[74,47.005]],[\"comment/216\",[]],[\"name/217\",[75,43.903]],[\"comment/217\",[]],[\"name/218\",[76,45.334]],[\"comment/218\",[]],[\"name/219\",[77,43.903]],[\"comment/219\",[]],[\"name/220\",[139,49.012]],[\"comment/220\",[]],[\"name/221\",[79,40.539]],[\"comment/221\",[]],[\"name/222\",[80,45.334]],[\"comment/222\",[]],[\"name/223\",[81,43.903]],[\"comment/223\",[]],[\"name/224\",[164,47.005]],[\"comment/224\",[]],[\"name/225\",[165,59.998]],[\"comment/225\",[]],[\"name/226\",[86,43.903]],[\"comment/226\",[]],[\"name/227\",[72,42.652]],[\"comment/227\",[]],[\"name/228\",[88,42.652]],[\"comment/228\",[]],[\"name/229\",[162,45.334]],[\"comment/229\",[]],[\"name/230\",[75,43.903]],[\"comment/230\",[]],[\"name/231\",[139,49.012]],[\"comment/231\",[]],[\"name/232\",[166,59.998]],[\"comment/232\",[]],[\"name/233\",[79,40.539]],[\"comment/233\",[]],[\"name/234\",[164,47.005]],[\"comment/234\",[]],[\"name/235\",[167,59.998]],[\"comment/235\",[]],[\"name/236\",[77,43.903]],[\"comment/236\",[]],[\"name/237\",[81,43.903]],[\"comment/237\",[]],[\"name/238\",[168,54.889]],[\"comment/238\",[]],[\"name/239\",[83,51.525]],[\"comment/239\",[]],[\"name/240\",[169,59.998]],[\"comment/240\",[]],[\"name/241\",[170,59.998]],[\"comment/241\",[]],[\"name/242\",[155,54.889]],[\"comment/242\",[]],[\"name/243\",[156,54.889]],[\"comment/243\",[]],[\"name/244\",[161,51.525]],[\"comment/244\",[]],[\"name/245\",[86,43.903]],[\"comment/245\",[]],[\"name/246\",[72,42.652]],[\"comment/246\",[]],[\"name/247\",[171,59.998]],[\"comment/247\",[]],[\"name/248\",[88,42.652]],[\"comment/248\",[]],[\"name/249\",[73,47.005]],[\"comment/249\",[]],[\"name/250\",[172,59.998]],[\"comment/250\",[]],[\"name/251\",[74,47.005]],[\"comment/251\",[]],[\"name/252\",[76,45.334]],[\"comment/252\",[]],[\"name/253\",[173,59.998]],[\"comment/253\",[]],[\"name/254\",[174,59.998]],[\"comment/254\",[]],[\"name/255\",[139,49.012]],[\"comment/255\",[]],[\"name/256\",[80,45.334]],[\"comment/256\",[]],[\"name/257\",[164,47.005]],[\"comment/257\",[]],[\"name/258\",[175,59.998]],[\"comment/258\",[]],[\"name/259\",[176,59.998]],[\"comment/259\",[]],[\"name/260\",[177,59.998]],[\"comment/260\",[]],[\"name/261\",[178,59.998]],[\"comment/261\",[]],[\"name/262\",[179,54.889]],[\"comment/262\",[]],[\"name/263\",[180,59.998]],[\"comment/263\",[]],[\"name/264\",[161,51.525]],[\"comment/264\",[]],[\"name/265\",[72,42.652]],[\"comment/265\",[]],[\"name/266\",[88,42.652]],[\"comment/266\",[]],[\"name/267\",[162,45.334]],[\"comment/267\",[]],[\"name/268\",[163,54.889]],[\"comment/268\",[]],[\"name/269\",[73,47.005]],[\"comment/269\",[]],[\"name/270\",[74,47.005]],[\"comment/270\",[]],[\"name/271\",[75,43.903]],[\"comment/271\",[]],[\"name/272\",[76,45.334]],[\"comment/272\",[]],[\"name/273\",[77,43.903]],[\"comment/273\",[]],[\"name/274\",[79,40.539]],[\"comment/274\",[]],[\"name/275\",[80,45.334]],[\"comment/275\",[]],[\"name/276\",[81,43.903]],[\"comment/276\",[]],[\"name/277\",[164,47.005]],[\"comment/277\",[]],[\"name/278\",[90,47.005]],[\"comment/278\",[]],[\"name/279\",[181,59.998]],[\"comment/279\",[]],[\"name/280\",[73,47.005]],[\"comment/280\",[]],[\"name/281\",[75,43.903]],[\"comment/281\",[]],[\"name/282\",[76,45.334]],[\"comment/282\",[]],[\"name/283\",[77,43.903]],[\"comment/283\",[]],[\"name/284\",[80,45.334]],[\"comment/284\",[]],[\"name/285\",[81,43.903]],[\"comment/285\",[]],[\"name/286\",[164,47.005]],[\"comment/286\",[]],[\"name/287\",[90,47.005]],[\"comment/287\",[]],[\"name/288\",[182,59.998]],[\"comment/288\",[]],[\"name/289\",[71,49.012]],[\"comment/289\",[]],[\"name/290\",[183,59.998]],[\"comment/290\",[]],[\"name/291\",[86,43.903]],[\"comment/291\",[]],[\"name/292\",[64,47.005]],[\"comment/292\",[]],[\"name/293\",[184,59.998]],[\"comment/293\",[]],[\"name/294\",[185,59.998]],[\"comment/294\",[]],[\"name/295\",[85,51.525]],[\"comment/295\",[]],[\"name/296\",[86,43.903]],[\"comment/296\",[]],[\"name/297\",[71,49.012]],[\"comment/297\",[]],[\"name/298\",[150,54.889]],[\"comment/298\",[]],[\"name/299\",[72,42.652]],[\"comment/299\",[]],[\"name/300\",[88,42.652]],[\"comment/300\",[]],[\"name/301\",[162,45.334]],[\"comment/301\",[]],[\"name/302\",[74,47.005]],[\"comment/302\",[]],[\"name/303\",[75,43.903]],[\"comment/303\",[]],[\"name/304\",[76,45.334]],[\"comment/304\",[]],[\"name/305\",[77,43.903]],[\"comment/305\",[]],[\"name/306\",[186,59.998]],[\"comment/306\",[]],[\"name/307\",[187,59.998]],[\"comment/307\",[]],[\"name/308\",[188,59.998]],[\"comment/308\",[]],[\"name/309\",[79,40.539]],[\"comment/309\",[]],[\"name/310\",[64,47.005]],[\"comment/310\",[]],[\"name/311\",[80,45.334]],[\"comment/311\",[]],[\"name/312\",[81,43.903]],[\"comment/312\",[]],[\"name/313\",[168,54.889]],[\"comment/313\",[]],[\"name/314\",[189,59.998]],[\"comment/314\",[]],[\"name/315\",[123,47.005]],[\"comment/315\",[]],[\"name/316\",[124,43.903]],[\"comment/316\",[]],[\"name/317\",[190,59.998]],[\"comment/317\",[]],[\"name/318\",[159,54.889]],[\"comment/318\",[]],[\"name/319\",[191,59.998]],[\"comment/319\",[]],[\"name/320\",[179,54.889]],[\"comment/320\",[]],[\"name/321\",[192,59.998]],[\"comment/321\",[]],[\"name/322\",[3,45.334]],[\"comment/322\",[]],[\"name/323\",[193,59.998]],[\"comment/323\",[]],[\"name/324\",[194,59.998]],[\"comment/324\",[]],[\"name/325\",[195,59.998]],[\"comment/325\",[]],[\"name/326\",[196,59.998]],[\"comment/326\",[]],[\"name/327\",[197,59.998]],[\"comment/327\",[]],[\"name/328\",[198,59.998]],[\"comment/328\",[]],[\"name/329\",[199,59.998]],[\"comment/329\",[]],[\"name/330\",[200,59.998]],[\"comment/330\",[]],[\"name/331\",[201,59.998]],[\"comment/331\",[]],[\"name/332\",[202,59.998]],[\"comment/332\",[]],[\"name/333\",[203,54.889]],[\"comment/333\",[]],[\"name/334\",[204,59.998]],[\"comment/334\",[]],[\"name/335\",[205,59.998]],[\"comment/335\",[]],[\"name/336\",[206,54.889]],[\"comment/336\",[]],[\"name/337\",[207,59.998]],[\"comment/337\",[]],[\"name/338\",[208,59.998]],[\"comment/338\",[]],[\"name/339\",[209,59.998]],[\"comment/339\",[]],[\"name/340\",[58,54.889]],[\"comment/340\",[]],[\"name/341\",[210,59.998]],[\"comment/341\",[]],[\"name/342\",[211,59.998]],[\"comment/342\",[]],[\"name/343\",[203,54.889]],[\"comment/343\",[]],[\"name/344\",[212,59.998]],[\"comment/344\",[]],[\"name/345\",[213,59.998]],[\"comment/345\",[]],[\"name/346\",[214,59.998]],[\"comment/346\",[]],[\"name/347\",[215,59.998]],[\"comment/347\",[]],[\"name/348\",[216,59.998]],[\"comment/348\",[]],[\"name/349\",[217,59.998]],[\"comment/349\",[]],[\"name/350\",[218,59.998]],[\"comment/350\",[]],[\"name/351\",[123,47.005]],[\"comment/351\",[]],[\"name/352\",[124,43.903]],[\"comment/352\",[]],[\"name/353\",[206,54.889]],[\"comment/353\",[]],[\"name/354\",[219,59.998]],[\"comment/354\",[]],[\"name/355\",[3,45.334]],[\"comment/355\",[]],[\"name/356\",[220,59.998]],[\"comment/356\",[]],[\"name/357\",[221,59.998]],[\"comment/357\",[]],[\"name/358\",[222,59.998]],[\"comment/358\",[]],[\"name/359\",[223,59.998]],[\"comment/359\",[]],[\"name/360\",[224,59.998]],[\"comment/360\",[]],[\"name/361\",[225,59.998]],[\"comment/361\",[]],[\"name/362\",[226,59.998]],[\"comment/362\",[]],[\"name/363\",[227,59.998]],[\"comment/363\",[]],[\"name/364\",[228,59.998]],[\"comment/364\",[]],[\"name/365\",[62,45.334]],[\"comment/365\",[]],[\"name/366\",[229,59.998]],[\"comment/366\",[]],[\"name/367\",[230,59.998]],[\"comment/367\",[]],[\"name/368\",[231,59.998]],[\"comment/368\",[]],[\"name/369\",[232,59.998]],[\"comment/369\",[]],[\"name/370\",[233,59.998]],[\"comment/370\",[]],[\"name/371\",[234,59.998]],[\"comment/371\",[]],[\"name/372\",[62,45.334]],[\"comment/372\",[]],[\"name/373\",[235,59.998]],[\"comment/373\",[]],[\"name/374\",[236,59.998]],[\"comment/374\",[]],[\"name/375\",[237,59.998]],[\"comment/375\",[]],[\"name/376\",[238,54.889]],[\"comment/376\",[]],[\"name/377\",[239,42.652]],[\"comment/377\",[]],[\"name/378\",[240,43.903]],[\"comment/378\",[]],[\"name/379\",[241,54.889]],[\"comment/379\",[]],[\"name/380\",[239,42.652]],[\"comment/380\",[]],[\"name/381\",[240,43.903]],[\"comment/381\",[]],[\"name/382\",[242,59.998]],[\"comment/382\",[]],[\"name/383\",[243,59.998]],[\"comment/383\",[]],[\"name/384\",[244,59.998]],[\"comment/384\",[]],[\"name/385\",[245,59.998]],[\"comment/385\",[]],[\"name/386\",[246,59.998]],[\"comment/386\",[]],[\"name/387\",[247,59.998]],[\"comment/387\",[]],[\"name/388\",[248,54.889]],[\"comment/388\",[]],[\"name/389\",[249,59.998]],[\"comment/389\",[]],[\"name/390\",[153,54.889]],[\"comment/390\",[]],[\"name/391\",[250,59.998]],[\"comment/391\",[]],[\"name/392\",[251,59.998]],[\"comment/392\",[]],[\"name/393\",[252,54.889]],[\"comment/393\",[]],[\"name/394\",[88,42.652]],[\"comment/394\",[]],[\"name/395\",[162,45.334]],[\"comment/395\",[]],[\"name/396\",[253,59.998]],[\"comment/396\",[]],[\"name/397\",[254,59.998]],[\"comment/397\",[]],[\"name/398\",[241,54.889]],[\"comment/398\",[]],[\"name/399\",[255,59.998]],[\"comment/399\",[]],[\"name/400\",[256,59.998]],[\"comment/400\",[]],[\"name/401\",[257,59.998]],[\"comment/401\",[]],[\"name/402\",[258,59.998]],[\"comment/402\",[]],[\"name/403\",[259,59.998]],[\"comment/403\",[]],[\"name/404\",[260,54.889]],[\"comment/404\",[]],[\"name/405\",[261,59.998]],[\"comment/405\",[]],[\"name/406\",[262,59.998]],[\"comment/406\",[]],[\"name/407\",[263,59.998]],[\"comment/407\",[]],[\"name/408\",[124,43.903]],[\"comment/408\",[]],[\"name/409\",[264,59.998]],[\"comment/409\",[]],[\"name/410\",[265,59.998]],[\"comment/410\",[]],[\"name/411\",[238,54.889]],[\"comment/411\",[]],[\"name/412\",[266,59.998]],[\"comment/412\",[]],[\"name/413\",[267,59.998]],[\"comment/413\",[]],[\"name/414\",[268,59.998]],[\"comment/414\",[]],[\"name/415\",[269,59.998]],[\"comment/415\",[]],[\"name/416\",[270,54.889]],[\"comment/416\",[]],[\"name/417\",[90,47.005]],[\"comment/417\",[]],[\"name/418\",[239,42.652]],[\"comment/418\",[]],[\"name/419\",[271,59.998]],[\"comment/419\",[]],[\"name/420\",[272,51.525]],[\"comment/420\",[]],[\"name/421\",[273,59.998]],[\"comment/421\",[]],[\"name/422\",[274,59.998]],[\"comment/422\",[]],[\"name/423\",[275,59.998]],[\"comment/423\",[]],[\"name/424\",[276,59.998]],[\"comment/424\",[]],[\"name/425\",[252,54.889]],[\"comment/425\",[]],[\"name/426\",[277,59.998]],[\"comment/426\",[]],[\"name/427\",[278,59.998]],[\"comment/427\",[]],[\"name/428\",[279,59.998]],[\"comment/428\",[]],[\"name/429\",[280,59.998]],[\"comment/429\",[]],[\"name/430\",[281,59.998]],[\"comment/430\",[]],[\"name/431\",[282,59.998]],[\"comment/431\",[]],[\"name/432\",[283,59.998]],[\"comment/432\",[]],[\"name/433\",[284,59.998]],[\"comment/433\",[]],[\"name/434\",[285,54.889]],[\"comment/434\",[]],[\"name/435\",[286,59.998]],[\"comment/435\",[]],[\"name/436\",[287,59.998]],[\"comment/436\",[]],[\"name/437\",[44,51.525]],[\"comment/437\",[]],[\"name/438\",[288,59.998]],[\"comment/438\",[]],[\"name/439\",[289,59.998]],[\"comment/439\",[]],[\"name/440\",[290,59.998]],[\"comment/440\",[]],[\"name/441\",[285,54.889]],[\"comment/441\",[]],[\"name/442\",[291,54.889]],[\"comment/442\",[]],[\"name/443\",[239,42.652]],[\"comment/443\",[]],[\"name/444\",[240,43.903]],[\"comment/444\",[]],[\"name/445\",[292,54.889]],[\"comment/445\",[]],[\"name/446\",[239,42.652]],[\"comment/446\",[]],[\"name/447\",[240,43.903]],[\"comment/447\",[]],[\"name/448\",[293,54.889]],[\"comment/448\",[]],[\"name/449\",[239,42.652]],[\"comment/449\",[]],[\"name/450\",[240,43.903]],[\"comment/450\",[]],[\"name/451\",[294,54.889]],[\"comment/451\",[]],[\"name/452\",[239,42.652]],[\"comment/452\",[]],[\"name/453\",[240,43.903]],[\"comment/453\",[]],[\"name/454\",[295,54.889]],[\"comment/454\",[]],[\"name/455\",[239,42.652]],[\"comment/455\",[]],[\"name/456\",[240,43.903]],[\"comment/456\",[]],[\"name/457\",[296,54.889]],[\"comment/457\",[]],[\"name/458\",[297,54.889]],[\"comment/458\",[]],[\"name/459\",[295,54.889]],[\"comment/459\",[]],[\"name/460\",[293,54.889]],[\"comment/460\",[]],[\"name/461\",[292,54.889]],[\"comment/461\",[]],[\"name/462\",[294,54.889]],[\"comment/462\",[]],[\"name/463\",[291,54.889]],[\"comment/463\",[]],[\"name/464\",[298,59.998]],[\"comment/464\",[]],[\"name/465\",[297,54.889]],[\"comment/465\",[]],[\"name/466\",[299,59.998]],[\"comment/466\",[]],[\"name/467\",[300,59.998]],[\"comment/467\",[]],[\"name/468\",[301,54.889]],[\"comment/468\",[]],[\"name/469\",[302,59.998]],[\"comment/469\",[]],[\"name/470\",[54,54.889]],[\"comment/470\",[]],[\"name/471\",[301,54.889]],[\"comment/471\",[]],[\"name/472\",[303,54.889]],[\"comment/472\",[]],[\"name/473\",[304,51.525]],[\"comment/473\",[]],[\"name/474\",[305,59.998]],[\"comment/474\",[]],[\"name/475\",[306,59.998]],[\"comment/475\",[]],[\"name/476\",[307,59.998]],[\"comment/476\",[]],[\"name/477\",[308,54.889]],[\"comment/477\",[]],[\"name/478\",[309,54.889]],[\"comment/478\",[]],[\"name/479\",[310,54.889]],[\"comment/479\",[]],[\"name/480\",[311,51.525]],[\"comment/480\",[]],[\"name/481\",[312,54.889]],[\"comment/481\",[]],[\"name/482\",[313,54.889]],[\"comment/482\",[]],[\"name/483\",[314,54.889]],[\"comment/483\",[]],[\"name/484\",[315,54.889]],[\"comment/484\",[]],[\"name/485\",[316,54.889]],[\"comment/485\",[]],[\"name/486\",[311,51.525]],[\"comment/486\",[]],[\"name/487\",[151,54.889]],[\"comment/487\",[]],[\"name/488\",[317,59.998]],[\"comment/488\",[]],[\"name/489\",[318,59.998]],[\"comment/489\",[]],[\"name/490\",[319,59.998]],[\"comment/490\",[]],[\"name/491\",[320,59.998]],[\"comment/491\",[]],[\"name/492\",[321,59.998]],[\"comment/492\",[]],[\"name/493\",[322,59.998]],[\"comment/493\",[]],[\"name/494\",[323,59.998]],[\"comment/494\",[]],[\"name/495\",[296,54.889]],[\"comment/495\",[]],[\"name/496\",[248,54.889]],[\"comment/496\",[]],[\"name/497\",[303,54.889]],[\"comment/497\",[]],[\"name/498\",[324,54.889]],[\"comment/498\",[]],[\"name/499\",[124,43.903]],[\"comment/499\",[]],[\"name/500\",[324,54.889]],[\"comment/500\",[]],[\"name/501\",[325,59.998]],[\"comment/501\",[]],[\"name/502\",[326,59.998]],[\"comment/502\",[]],[\"name/503\",[260,54.889]],[\"comment/503\",[]],[\"name/504\",[327,54.889]],[\"comment/504\",[]],[\"name/505\",[328,51.525]],[\"comment/505\",[]],[\"name/506\",[329,59.998]],[\"comment/506\",[]],[\"name/507\",[134,51.525]],[\"comment/507\",[]],[\"name/508\",[304,51.525]],[\"comment/508\",[]],[\"name/509\",[308,54.889]],[\"comment/509\",[]],[\"name/510\",[88,42.652]],[\"comment/510\",[]],[\"name/511\",[162,45.334]],[\"comment/511\",[]],[\"name/512\",[309,54.889]],[\"comment/512\",[]],[\"name/513\",[108,54.889]],[\"comment/513\",[]],[\"name/514\",[272,51.525]],[\"comment/514\",[]],[\"name/515\",[310,54.889]],[\"comment/515\",[]],[\"name/516\",[311,51.525]],[\"comment/516\",[]],[\"name/517\",[312,54.889]],[\"comment/517\",[]],[\"name/518\",[313,54.889]],[\"comment/518\",[]],[\"name/519\",[314,54.889]],[\"comment/519\",[]],[\"name/520\",[315,54.889]],[\"comment/520\",[]],[\"name/521\",[270,54.889]],[\"comment/521\",[]],[\"name/522\",[316,54.889]],[\"comment/522\",[]],[\"name/523\",[330,59.998]],[\"comment/523\",[]],[\"name/524\",[331,59.998]],[\"comment/524\",[]],[\"name/525\",[328,51.525]],[\"comment/525\",[]],[\"name/526\",[332,59.998]],[\"comment/526\",[]],[\"name/527\",[123,47.005]],[\"comment/527\",[]],[\"name/528\",[124,43.903]],[\"comment/528\",[]],[\"name/529\",[327,54.889]],[\"comment/529\",[]],[\"name/530\",[328,51.525]],[\"comment/530\",[]],[\"name/531\",[3,45.334]],[\"comment/531\",[]],[\"name/532\",[333,59.998]],[\"comment/532\",[]],[\"name/533\",[334,59.998]],[\"comment/533\",[]],[\"name/534\",[335,59.998]],[\"comment/534\",[]],[\"name/535\",[336,59.998]],[\"comment/535\",[]],[\"name/536\",[337,59.998]],[\"comment/536\",[]],[\"name/537\",[338,59.998]],[\"comment/537\",[]],[\"name/538\",[304,51.525]],[\"comment/538\",[]],[\"name/539\",[339,59.998]],[\"comment/539\",[]],[\"name/540\",[340,59.998]],[\"comment/540\",[]],[\"name/541\",[341,59.998]],[\"comment/541\",[]],[\"name/542\",[342,59.998]],[\"comment/542\",[]],[\"name/543\",[343,59.998]],[\"comment/543\",[]],[\"name/544\",[344,59.998]],[\"comment/544\",[]],[\"name/545\",[345,59.998]],[\"comment/545\",[]],[\"name/546\",[346,59.998]],[\"comment/546\",[]],[\"name/547\",[347,59.998]],[\"comment/547\",[]],[\"name/548\",[348,59.998]],[\"comment/548\",[]],[\"name/549\",[349,59.998]],[\"comment/549\",[]],[\"name/550\",[350,59.998]],[\"comment/550\",[]],[\"name/551\",[351,59.998]],[\"comment/551\",[]],[\"name/552\",[352,59.998]],[\"comment/552\",[]],[\"name/553\",[353,59.998]],[\"comment/553\",[]],[\"name/554\",[117,54.889]],[\"comment/554\",[]],[\"name/555\",[79,40.539]],[\"comment/555\",[]],[\"name/556\",[354,59.998]],[\"comment/556\",[]],[\"name/557\",[114,51.525]],[\"comment/557\",[]],[\"name/558\",[99,49.012]],[\"comment/558\",[]],[\"name/559\",[115,54.889]],[\"comment/559\",[]],[\"name/560\",[355,59.998]],[\"comment/560\",[]],[\"name/561\",[272,51.525]],[\"comment/561\",[]],[\"name/562\",[103,51.525]],[\"comment/562\",[]],[\"name/563\",[356,54.889]],[\"comment/563\",[]],[\"name/564\",[357,59.998]],[\"comment/564\",[]],[\"name/565\",[358,54.889]],[\"comment/565\",[]],[\"name/566\",[359,54.889]],[\"comment/566\",[]],[\"name/567\",[360,54.889]],[\"comment/567\",[]],[\"name/568\",[361,54.889]],[\"comment/568\",[]],[\"name/569\",[362,54.889]],[\"comment/569\",[]],[\"name/570\",[363,54.889]],[\"comment/570\",[]],[\"name/571\",[364,54.889]],[\"comment/571\",[]],[\"name/572\",[365,54.889]],[\"comment/572\",[]],[\"name/573\",[366,54.889]],[\"comment/573\",[]],[\"name/574\",[367,54.889]],[\"comment/574\",[]],[\"name/575\",[368,54.889]],[\"comment/575\",[]],[\"name/576\",[369,54.889]],[\"comment/576\",[]],[\"name/577\",[370,54.889]],[\"comment/577\",[]],[\"name/578\",[371,54.889]],[\"comment/578\",[]],[\"name/579\",[372,54.889]],[\"comment/579\",[]],[\"name/580\",[373,59.998]],[\"comment/580\",[]],[\"name/581\",[358,54.889]],[\"comment/581\",[]],[\"name/582\",[359,54.889]],[\"comment/582\",[]],[\"name/583\",[360,54.889]],[\"comment/583\",[]],[\"name/584\",[361,54.889]],[\"comment/584\",[]],[\"name/585\",[362,54.889]],[\"comment/585\",[]],[\"name/586\",[363,54.889]],[\"comment/586\",[]],[\"name/587\",[364,54.889]],[\"comment/587\",[]],[\"name/588\",[365,54.889]],[\"comment/588\",[]],[\"name/589\",[366,54.889]],[\"comment/589\",[]],[\"name/590\",[367,54.889]],[\"comment/590\",[]],[\"name/591\",[368,54.889]],[\"comment/591\",[]],[\"name/592\",[369,54.889]],[\"comment/592\",[]],[\"name/593\",[370,54.889]],[\"comment/593\",[]],[\"name/594\",[371,54.889]],[\"comment/594\",[]],[\"name/595\",[372,54.889]],[\"comment/595\",[]],[\"name/596\",[374,59.998]],[\"comment/596\",[]],[\"name/597\",[123,47.005]],[\"comment/597\",[]],[\"name/598\",[124,43.903]],[\"comment/598\",[]],[\"name/599\",[356,54.889]],[\"comment/599\",[]],[\"name/600\",[3,45.334]],[\"comment/600\",[]],[\"name/601\",[375,59.998]],[\"comment/601\",[]],[\"name/602\",[376,59.998]],[\"comment/602\",[]],[\"name/603\",[377,59.998]],[\"comment/603\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":124,\"name\":{\"150\":{},\"316\":{},\"352\":{},\"408\":{},\"499\":{},\"528\":{},\"598\":{}},\"comment\":{}}],[\"accepted\",{\"_index\":47,\"name\":{\"47\":{},\"181\":{}},\"comment\":{}}],[\"access_token\",{\"_index\":204,\"name\":{\"334\":{}},\"comment\":{}}],[\"account\",{\"_index\":56,\"name\":{\"60\":{}},\"comment\":{}}],[\"accountalias\",{\"_index\":57,\"name\":{\"61\":{}},\"comment\":{}}],[\"accountapi\",{\"_index\":122,\"name\":{\"148\":{}},\"comment\":{}}],[\"accountid\",{\"_index\":58,\"name\":{\"62\":{},\"340\":{}},\"comment\":{}}],[\"accountname\",{\"_index\":59,\"name\":{\"63\":{}},\"comment\":{}}],[\"accounts\",{\"_index\":66,\"name\":{\"72\":{},\"151\":{}},\"comment\":{}}],[\"accountsresponse\",{\"_index\":65,\"name\":{\"71\":{}},\"comment\":{}}],[\"accountstatus\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"accounttype\",{\"_index\":11,\"name\":{\"11\":{},\"64\":{}},\"comment\":{}}],[\"action\",{\"_index\":67,\"name\":{\"73\":{}},\"comment\":{}}],[\"actions\",{\"_index\":70,\"name\":{\"77\":{}},\"comment\":{}}],[\"actiontype\",{\"_index\":27,\"name\":{\"27\":{},\"74\":{}},\"comment\":{}}],[\"activities\",{\"_index\":102,\"name\":{\"115\":{}},\"comment\":{}}],[\"activity\",{\"_index\":84,\"name\":{\"92\":{}},\"comment\":{}}],[\"activityhistoryrequest\",{\"_index\":95,\"name\":{\"107\":{}},\"comment\":{}}],[\"activityhistoryresponse\",{\"_index\":101,\"name\":{\"114\":{}},\"comment\":{}}],[\"activitymetadata\",{\"_index\":93,\"name\":{\"105\":{}},\"comment\":{}}],[\"activitypaging\",{\"_index\":91,\"name\":{\"102\":{}},\"comment\":{}}],[\"activitystatus\",{\"_index\":46,\"name\":{\"46\":{}},\"comment\":{}}],[\"activitytype\",{\"_index\":49,\"name\":{\"50\":{}},\"comment\":{}}],[\"affecteddeal\",{\"_index\":183,\"name\":{\"290\":{}},\"comment\":{}}],[\"affecteddealid\",{\"_index\":68,\"name\":{\"75\":{}},\"comment\":{}}],[\"affecteddeals\",{\"_index\":185,\"name\":{\"294\":{}},\"comment\":{}}],[\"affecteddealstatus\",{\"_index\":144,\"name\":{\"174\":{}},\"comment\":{}}],[\"all\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"all_deal\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"allowance\",{\"_index\":353,\"name\":{\"553\":{}},\"comment\":{}}],[\"allowanceexpiry\",{\"_index\":349,\"name\":{\"549\":{}},\"comment\":{}}],[\"amended\",{\"_index\":145,\"name\":{\"175\":{},\"184\":{}},\"comment\":{}}],[\"amount\",{\"_index\":289,\"name\":{\"439\":{}},\"comment\":{}}],[\"apiclient\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"ask\",{\"_index\":338,\"name\":{\"537\":{}},\"comment\":{}}],[\"available\",{\"_index\":54,\"name\":{\"56\":{},\"470\":{}},\"comment\":{}}],[\"available_default_off\",{\"_index\":299,\"name\":{\"466\":{}},\"comment\":{}}],[\"available_default_on\",{\"_index\":300,\"name\":{\"467\":{}},\"comment\":{}}],[\"balance\",{\"_index\":53,\"name\":{\"55\":{},\"57\":{},\"65\":{}},\"comment\":{}}],[\"baseexchangerate\",{\"_index\":229,\"name\":{\"366\":{}},\"comment\":{}}],[\"bid\",{\"_index\":304,\"name\":{\"473\":{},\"508\":{},\"538\":{}},\"comment\":{}}],[\"bidask\",{\"_index\":337,\"name\":{\"536\":{}},\"comment\":{}}],[\"binaryodds\",{\"_index\":305,\"name\":{\"474\":{}},\"comment\":{}}],[\"bungee_commodities\",{\"_index\":273,\"name\":{\"421\":{}},\"comment\":{}}],[\"bungee_currencies\",{\"_index\":274,\"name\":{\"422\":{}},\"comment\":{}}],[\"bungee_indices\",{\"_index\":275,\"name\":{\"423\":{}},\"comment\":{}}],[\"buy\",{\"_index\":130,\"name\":{\"159\":{}},\"comment\":{}}],[\"candlestick\",{\"_index\":340,\"name\":{\"540\":{}},\"comment\":{}}],[\"cantransferfrom\",{\"_index\":60,\"name\":{\"66\":{}},\"comment\":{}}],[\"cantransferto\",{\"_index\":61,\"name\":{\"67\":{}},\"comment\":{}}],[\"cashtransaction\",{\"_index\":105,\"name\":{\"118\":{}},\"comment\":{}}],[\"cfd\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"channel\",{\"_index\":20,\"name\":{\"20\":{},\"93\":{}},\"comment\":{}}],[\"chartcode\",{\"_index\":249,\"name\":{\"389\":{}},\"comment\":{}}],[\"clientid\",{\"_index\":210,\"name\":{\"341\":{}},\"comment\":{}}],[\"closed\",{\"_index\":151,\"name\":{\"185\":{},\"487\":{}},\"comment\":{}}],[\"closelevel\",{\"_index\":106,\"name\":{\"119\":{}},\"comment\":{}}],[\"closeposition\",{\"_index\":196,\"name\":{\"326\":{}},\"comment\":{}}],[\"closeprice\",{\"_index\":341,\"name\":{\"541\":{}},\"comment\":{}}],[\"code\",{\"_index\":230,\"name\":{\"367\":{}},\"comment\":{}}],[\"commodities\",{\"_index\":276,\"name\":{\"424\":{}},\"comment\":{}}],[\"confirms\",{\"_index\":190,\"name\":{\"317\":{}},\"comment\":{}}],[\"confirmtrade\",{\"_index\":198,\"name\":{\"328\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":3,\"name\":{\"3\":{},\"154\":{},\"322\":{},\"355\":{},\"531\":{},\"600\":{}},\"comment\":{}}],[\"contracts\",{\"_index\":290,\"name\":{\"440\":{}},\"comment\":{}}],[\"contractsize\",{\"_index\":153,\"name\":{\"190\":{},\"390\":{}},\"comment\":{}}],[\"controlledrisk\",{\"_index\":154,\"name\":{\"191\":{}},\"comment\":{}}],[\"controlledriskallowed\",{\"_index\":250,\"name\":{\"391\":{}},\"comment\":{}}],[\"controlledriskextraspread\",{\"_index\":306,\"name\":{\"475\":{}},\"comment\":{}}],[\"country\",{\"_index\":251,\"name\":{\"392\":{}},\"comment\":{}}],[\"createddate\",{\"_index\":155,\"name\":{\"192\":{},\"242\":{}},\"comment\":{}}],[\"createddateutc\",{\"_index\":156,\"name\":{\"193\":{},\"243\":{}},\"comment\":{}}],[\"createorder\",{\"_index\":200,\"name\":{\"330\":{}},\"comment\":{}}],[\"createposition\",{\"_index\":195,\"name\":{\"325\":{}},\"comment\":{}}],[\"createsession\",{\"_index\":220,\"name\":{\"356\":{}},\"comment\":{}}],[\"createsessionfrommobilelogin\",{\"_index\":224,\"name\":{\"360\":{}},\"comment\":{}}],[\"createsessionfromtoken\",{\"_index\":223,\"name\":{\"359\":{}},\"comment\":{}}],[\"currencies\",{\"_index\":252,\"name\":{\"393\":{},\"425\":{}},\"comment\":{}}],[\"currency\",{\"_index\":62,\"name\":{\"68\":{},\"78\":{},\"120\":{},\"194\":{},\"365\":{},\"372\":{}},\"comment\":{}}],[\"currencycode\",{\"_index\":161,\"name\":{\"210\":{},\"244\":{},\"264\":{}},\"comment\":{}}],[\"date\",{\"_index\":85,\"name\":{\"94\":{},\"121\":{},\"295\":{}},\"comment\":{}}],[\"dateutc\",{\"_index\":107,\"name\":{\"122\":{}},\"comment\":{}}],[\"day\",{\"_index\":358,\"name\":{\"565\":{},\"581\":{}},\"comment\":{}}],[\"dealconfirmation\",{\"_index\":184,\"name\":{\"293\":{}},\"comment\":{}}],[\"dealer\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"dealid\",{\"_index\":86,\"name\":{\"95\":{},\"108\":{},\"195\":{},\"226\":{},\"245\":{},\"291\":{},\"296\":{}},\"comment\":{}}],[\"dealingapi\",{\"_index\":189,\"name\":{\"314\":{}},\"comment\":{}}],[\"dealingenabled\",{\"_index\":214,\"name\":{\"346\":{}},\"comment\":{}}],[\"dealingrules\",{\"_index\":296,\"name\":{\"457\":{},\"495\":{}},\"comment\":{}}],[\"dealreference\",{\"_index\":71,\"name\":{\"79\":{},\"196\":{},\"289\":{},\"297\":{}},\"comment\":{}}],[\"dealreferenceresponse\",{\"_index\":182,\"name\":{\"288\":{}},\"comment\":{}}],[\"dealstatus\",{\"_index\":150,\"name\":{\"180\":{},\"298\":{}},\"comment\":{}}],[\"decimalplacesfactor\",{\"_index\":307,\"name\":{\"476\":{}},\"comment\":{}}],[\"default\",{\"_index\":377,\"name\":{\"603\":{}},\"comment\":{}}],[\"delaytime\",{\"_index\":308,\"name\":{\"477\":{},\"509\":{}},\"comment\":{}}],[\"deleted\",{\"_index\":146,\"name\":{\"176\":{},\"186\":{}},\"comment\":{}}],[\"deleteorder\",{\"_index\":201,\"name\":{\"331\":{}},\"comment\":{}}],[\"deposit\",{\"_index\":18,\"name\":{\"18\":{},\"58\":{}},\"comment\":{}}],[\"description\",{\"_index\":87,\"name\":{\"96\":{}},\"comment\":{}}],[\"detailed\",{\"_index\":96,\"name\":{\"109\":{}},\"comment\":{}}],[\"details\",{\"_index\":69,\"name\":{\"76\":{},\"97\":{}},\"comment\":{}}],[\"direction\",{\"_index\":72,\"name\":{\"80\":{},\"158\":{},\"197\":{},\"211\":{},\"227\":{},\"246\":{},\"265\":{},\"299\":{}},\"comment\":{}}],[\"disabled\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"dma\",{\"_index\":171,\"name\":{\"247\":{}},\"comment\":{}}],[\"edit_stop_and_limit\",{\"_index\":50,\"name\":{\"51\":{}},\"comment\":{}}],[\"edits_only\",{\"_index\":317,\"name\":{\"488\":{}},\"comment\":{}}],[\"enabled\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"epic\",{\"_index\":88,\"name\":{\"98\":{},\"212\":{},\"228\":{},\"248\":{},\"266\":{},\"300\":{},\"394\":{},\"510\":{}},\"comment\":{}}],[\"exchangerate\",{\"_index\":231,\"name\":{\"368\":{}},\"comment\":{}}],[\"execute_and_eliminate\",{\"_index\":137,\"name\":{\"166\":{}},\"comment\":{}}],[\"expires_in\",{\"_index\":205,\"name\":{\"335\":{}},\"comment\":{}}],[\"expiry\",{\"_index\":162,\"name\":{\"213\":{},\"229\":{},\"267\":{},\"301\":{},\"395\":{},\"511\":{}},\"comment\":{}}],[\"expirydetail\",{\"_index\":242,\"name\":{\"382\":{}},\"comment\":{}}],[\"expirydetails\",{\"_index\":253,\"name\":{\"396\":{}},\"comment\":{}}],[\"fill_or_kill\",{\"_index\":138,\"name\":{\"167\":{}},\"comment\":{}}],[\"filter\",{\"_index\":97,\"name\":{\"110\":{}},\"comment\":{}}],[\"forceopen\",{\"_index\":163,\"name\":{\"214\":{},\"268\":{}},\"comment\":{}}],[\"forceopenallowed\",{\"_index\":254,\"name\":{\"397\":{}},\"comment\":{}}],[\"from\",{\"_index\":98,\"name\":{\"111\":{},\"139\":{}},\"comment\":{}}],[\"fully_closed\",{\"_index\":147,\"name\":{\"177\":{}},\"comment\":{}}],[\"getaccounts\",{\"_index\":127,\"name\":{\"155\":{}},\"comment\":{}}],[\"getactivityhistory\",{\"_index\":128,\"name\":{\"156\":{}},\"comment\":{}}],[\"getallopenpositions\",{\"_index\":193,\"name\":{\"323\":{}},\"comment\":{}}],[\"getallorders\",{\"_index\":199,\"name\":{\"329\":{}},\"comment\":{}}],[\"getmarketcategories\",{\"_index\":335,\"name\":{\"534\":{}},\"comment\":{}}],[\"getmarketdetails\",{\"_index\":336,\"name\":{\"535\":{}},\"comment\":{}}],[\"getposition\",{\"_index\":194,\"name\":{\"324\":{}},\"comment\":{}}],[\"getprices\",{\"_index\":376,\"name\":{\"602\":{}},\"comment\":{}}],[\"getpricesbetweendates\",{\"_index\":375,\"name\":{\"601\":{}},\"comment\":{}}],[\"getsession\",{\"_index\":225,\"name\":{\"361\":{}},\"comment\":{}}],[\"getsessiontoken\",{\"_index\":222,\"name\":{\"358\":{}},\"comment\":{}}],[\"gettransactionhistory\",{\"_index\":129,\"name\":{\"157\":{}},\"comment\":{}}],[\"good_till_cancelled\",{\"_index\":142,\"name\":{\"172\":{}},\"comment\":{}}],[\"good_till_date\",{\"_index\":143,\"name\":{\"173\":{}},\"comment\":{}}],[\"goodtilldate\",{\"_index\":73,\"name\":{\"81\":{},\"215\":{},\"249\":{},\"269\":{},\"280\":{}},\"comment\":{}}],[\"goodtilldateiso\",{\"_index\":172,\"name\":{\"250\":{}},\"comment\":{}}],[\"guaranteedstop\",{\"_index\":74,\"name\":{\"82\":{},\"216\":{},\"251\":{},\"270\":{},\"302\":{}},\"comment\":{}}],[\"hasactivedemoaccounts\",{\"_index\":215,\"name\":{\"347\":{}},\"comment\":{}}],[\"hasactiveliveaccounts\",{\"_index\":216,\"name\":{\"348\":{}},\"comment\":{}}],[\"high\",{\"_index\":309,\"name\":{\"478\":{},\"512\":{}},\"comment\":{}}],[\"highprice\",{\"_index\":342,\"name\":{\"542\":{}},\"comment\":{}}],[\"historicalpricesallowance\",{\"_index\":348,\"name\":{\"548\":{}},\"comment\":{}}],[\"historicalpricesmetadata\",{\"_index\":352,\"name\":{\"552\":{}},\"comment\":{}}],[\"historicalpricespagination\",{\"_index\":354,\"name\":{\"556\":{}},\"comment\":{}}],[\"historicalpricesresponse\",{\"_index\":355,\"name\":{\"560\":{}},\"comment\":{}}],[\"history_activity\",{\"_index\":125,\"name\":{\"152\":{}},\"comment\":{}}],[\"history_transactions\",{\"_index\":126,\"name\":{\"153\":{}},\"comment\":{}}],[\"hour\",{\"_index\":359,\"name\":{\"566\":{},\"582\":{}},\"comment\":{}}],[\"hour_2\",{\"_index\":360,\"name\":{\"567\":{},\"583\":{}},\"comment\":{}}],[\"hour_3\",{\"_index\":361,\"name\":{\"568\":{},\"584\":{}},\"comment\":{}}],[\"hour_4\",{\"_index\":362,\"name\":{\"569\":{},\"585\":{}},\"comment\":{}}],[\"id\",{\"_index\":326,\"name\":{\"502\":{}},\"comment\":{}}],[\"indices\",{\"_index\":277,\"name\":{\"426\":{}},\"comment\":{}}],[\"instrument\",{\"_index\":248,\"name\":{\"388\":{},\"496\":{}},\"comment\":{}}],[\"instrumentname\",{\"_index\":108,\"name\":{\"123\":{},\"513\":{}},\"comment\":{}}],[\"instrumenttype\",{\"_index\":272,\"name\":{\"420\":{},\"514\":{},\"561\":{}},\"comment\":{}}],[\"instrumentunit\",{\"_index\":288,\"name\":{\"438\":{}},\"comment\":{}}],[\"isdefault\",{\"_index\":232,\"name\":{\"369\":{}},\"comment\":{}}],[\"islive\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"lastdealingdate\",{\"_index\":243,\"name\":{\"383\":{}},\"comment\":{}}],[\"lastrollovertime\",{\"_index\":246,\"name\":{\"386\":{}},\"comment\":{}}],[\"lasttraded\",{\"_index\":339,\"name\":{\"539\":{}},\"comment\":{}}],[\"lasttradedvolume\",{\"_index\":343,\"name\":{\"543\":{}},\"comment\":{}}],[\"level\",{\"_index\":75,\"name\":{\"83\":{},\"198\":{},\"217\":{},\"230\":{},\"271\":{},\"281\":{},\"303\":{}},\"comment\":{}}],[\"lightstreamerendpoint\",{\"_index\":211,\"name\":{\"342\":{}},\"comment\":{}}],[\"limit\",{\"_index\":133,\"name\":{\"162\":{},\"169\":{}},\"comment\":{}}],[\"limit_order_amended\",{\"_index\":28,\"name\":{\"28\":{}},\"comment\":{}}],[\"limit_order_deleted\",{\"_index\":29,\"name\":{\"29\":{}},\"comment\":{}}],[\"limit_order_filled\",{\"_index\":30,\"name\":{\"30\":{}},\"comment\":{}}],[\"limit_order_opened\",{\"_index\":31,\"name\":{\"31\":{}},\"comment\":{}}],[\"limit_order_rolled\",{\"_index\":32,\"name\":{\"32\":{}},\"comment\":{}}],[\"limitdistance\",{\"_index\":76,\"name\":{\"84\":{},\"218\":{},\"252\":{},\"272\":{},\"282\":{},\"304\":{}},\"comment\":{}}],[\"limitedriskpremium\",{\"_index\":241,\"name\":{\"379\":{},\"398\":{}},\"comment\":{}}],[\"limitlevel\",{\"_index\":77,\"name\":{\"85\":{},\"199\":{},\"219\":{},\"236\":{},\"273\":{},\"283\":{},\"305\":{}},\"comment\":{}}],[\"login\",{\"_index\":226,\"name\":{\"362\":{}},\"comment\":{}}],[\"loginapi\",{\"_index\":218,\"name\":{\"350\":{}},\"comment\":{}}],[\"logout\",{\"_index\":227,\"name\":{\"363\":{}},\"comment\":{}}],[\"lotsize\",{\"_index\":255,\"name\":{\"399\":{}},\"comment\":{}}],[\"low\",{\"_index\":310,\"name\":{\"479\":{},\"515\":{}},\"comment\":{}}],[\"lowprice\",{\"_index\":344,\"name\":{\"544\":{}},\"comment\":{}}],[\"margin\",{\"_index\":235,\"name\":{\"373\":{}},\"comment\":{}}],[\"margindepositband\",{\"_index\":234,\"name\":{\"371\":{}},\"comment\":{}}],[\"margindepositbands\",{\"_index\":256,\"name\":{\"400\":{}},\"comment\":{}}],[\"marginfactor\",{\"_index\":257,\"name\":{\"401\":{}},\"comment\":{}}],[\"marginfactorunit\",{\"_index\":258,\"name\":{\"402\":{}},\"comment\":{}}],[\"market\",{\"_index\":134,\"name\":{\"163\":{},\"205\":{},\"507\":{}},\"comment\":{}}],[\"marketapi\",{\"_index\":332,\"name\":{\"526\":{}},\"comment\":{}}],[\"marketdata\",{\"_index\":176,\"name\":{\"259\":{}},\"comment\":{}}],[\"marketdetail\",{\"_index\":323,\"name\":{\"494\":{}},\"comment\":{}}],[\"marketdetails\",{\"_index\":324,\"name\":{\"498\":{},\"500\":{}},\"comment\":{}}],[\"marketid\",{\"_index\":259,\"name\":{\"403\":{}},\"comment\":{}}],[\"marketname\",{\"_index\":78,\"name\":{\"86\":{}},\"comment\":{}}],[\"marketnavigation\",{\"_index\":327,\"name\":{\"504\":{},\"529\":{}},\"comment\":{}}],[\"marketnode\",{\"_index\":325,\"name\":{\"501\":{}},\"comment\":{}}],[\"marketorderpreference\",{\"_index\":297,\"name\":{\"458\":{},\"465\":{}},\"comment\":{}}],[\"markets\",{\"_index\":328,\"name\":{\"505\":{},\"525\":{},\"530\":{}},\"comment\":{}}],[\"marketsearch\",{\"_index\":331,\"name\":{\"524\":{}},\"comment\":{}}],[\"marketstatus\",{\"_index\":311,\"name\":{\"480\":{},\"486\":{},\"516\":{}},\"comment\":{}}],[\"markettimes\",{\"_index\":264,\"name\":{\"409\":{}},\"comment\":{}}],[\"max\",{\"_index\":236,\"name\":{\"374\":{}},\"comment\":{}}],[\"maxspanseconds\",{\"_index\":119,\"name\":{\"140\":{}},\"comment\":{}}],[\"maxstoporlimitdistance\",{\"_index\":295,\"name\":{\"454\":{},\"459\":{}},\"comment\":{}}],[\"metadata\",{\"_index\":103,\"name\":{\"116\":{},\"146\":{},\"562\":{}},\"comment\":{}}],[\"min\",{\"_index\":237,\"name\":{\"375\":{}},\"comment\":{}}],[\"mincontrolledriskstopdistance\",{\"_index\":293,\"name\":{\"448\":{},\"460\":{}},\"comment\":{}}],[\"mindealsize\",{\"_index\":292,\"name\":{\"445\":{},\"461\":{}},\"comment\":{}}],[\"minnormalstoporlimitdistance\",{\"_index\":294,\"name\":{\"451\":{},\"462\":{}},\"comment\":{}}],[\"minstepdistance\",{\"_index\":291,\"name\":{\"442\":{},\"463\":{}},\"comment\":{}}],[\"minute\",{\"_index\":363,\"name\":{\"570\":{},\"586\":{}},\"comment\":{}}],[\"minute_10\",{\"_index\":364,\"name\":{\"571\":{},\"587\":{}},\"comment\":{}}],[\"minute_15\",{\"_index\":365,\"name\":{\"572\":{},\"588\":{}},\"comment\":{}}],[\"minute_2\",{\"_index\":366,\"name\":{\"573\":{},\"589\":{}},\"comment\":{}}],[\"minute_3\",{\"_index\":367,\"name\":{\"574\":{},\"590\":{}},\"comment\":{}}],[\"minute_30\",{\"_index\":368,\"name\":{\"575\":{},\"591\":{}},\"comment\":{}}],[\"minute_5\",{\"_index\":369,\"name\":{\"576\":{},\"592\":{}},\"comment\":{}}],[\"mobile\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"month\",{\"_index\":370,\"name\":{\"577\":{},\"593\":{}},\"comment\":{}}],[\"name\",{\"_index\":260,\"name\":{\"404\":{},\"503\":{}},\"comment\":{}}],[\"netchange\",{\"_index\":312,\"name\":{\"481\":{},\"517\":{}},\"comment\":{}}],[\"newscode\",{\"_index\":261,\"name\":{\"405\":{}},\"comment\":{}}],[\"next\",{\"_index\":92,\"name\":{\"103\":{}},\"comment\":{}}],[\"nodes\",{\"_index\":329,\"name\":{\"506\":{}},\"comment\":{}}],[\"not_available\",{\"_index\":301,\"name\":{\"468\":{},\"471\":{}},\"comment\":{}}],[\"oauthtoken\",{\"_index\":203,\"name\":{\"333\":{},\"343\":{}},\"comment\":{}}],[\"offer\",{\"_index\":313,\"name\":{\"482\":{},\"518\":{}},\"comment\":{}}],[\"offline\",{\"_index\":318,\"name\":{\"489\":{}},\"comment\":{}}],[\"on_auction\",{\"_index\":319,\"name\":{\"490\":{}},\"comment\":{}}],[\"on_auction_no_edits\",{\"_index\":320,\"name\":{\"491\":{}},\"comment\":{}}],[\"onepipmeans\",{\"_index\":262,\"name\":{\"406\":{}},\"comment\":{}}],[\"open\",{\"_index\":152,\"name\":{\"187\":{}},\"comment\":{}}],[\"opendateutc\",{\"_index\":109,\"name\":{\"124\":{}},\"comment\":{}}],[\"opened\",{\"_index\":148,\"name\":{\"178\":{}},\"comment\":{}}],[\"openinghours\",{\"_index\":263,\"name\":{\"407\":{}},\"comment\":{}}],[\"openlevel\",{\"_index\":110,\"name\":{\"125\":{}},\"comment\":{}}],[\"openprice\",{\"_index\":345,\"name\":{\"545\":{}},\"comment\":{}}],[\"opt_commodities\",{\"_index\":278,\"name\":{\"427\":{}},\"comment\":{}}],[\"opt_currencies\",{\"_index\":279,\"name\":{\"428\":{}},\"comment\":{}}],[\"opt_indices\",{\"_index\":280,\"name\":{\"429\":{}},\"comment\":{}}],[\"opt_rates\",{\"_index\":281,\"name\":{\"430\":{}},\"comment\":{}}],[\"opt_shares\",{\"_index\":282,\"name\":{\"431\":{}},\"comment\":{}}],[\"order\",{\"_index\":170,\"name\":{\"241\":{}},\"comment\":{}}],[\"ordercreaterequest\",{\"_index\":180,\"name\":{\"263\":{}},\"comment\":{}}],[\"orderlevel\",{\"_index\":173,\"name\":{\"253\":{}},\"comment\":{}}],[\"orderlistresponse\",{\"_index\":178,\"name\":{\"261\":{}},\"comment\":{}}],[\"orderresponse\",{\"_index\":175,\"name\":{\"258\":{}},\"comment\":{}}],[\"ordersize\",{\"_index\":174,\"name\":{\"254\":{}},\"comment\":{}}],[\"ordertimeinforce\",{\"_index\":141,\"name\":{\"171\":{}},\"comment\":{}}],[\"ordertype\",{\"_index\":139,\"name\":{\"168\":{},\"220\":{},\"231\":{},\"255\":{}},\"comment\":{}}],[\"orderupdaterequest\",{\"_index\":181,\"name\":{\"279\":{}},\"comment\":{}}],[\"pagedata\",{\"_index\":117,\"name\":{\"136\":{},\"554\":{}},\"comment\":{}}],[\"pagenumber\",{\"_index\":114,\"name\":{\"132\":{},\"141\":{},\"557\":{}},\"comment\":{}}],[\"pagesize\",{\"_index\":99,\"name\":{\"112\":{},\"133\":{},\"142\":{},\"558\":{}},\"comment\":{}}],[\"paging\",{\"_index\":94,\"name\":{\"106\":{}},\"comment\":{}}],[\"partially_closed\",{\"_index\":149,\"name\":{\"179\":{},\"188\":{}},\"comment\":{}}],[\"percentagechange\",{\"_index\":314,\"name\":{\"483\":{},\"519\":{}},\"comment\":{}}],[\"period\",{\"_index\":89,\"name\":{\"99\":{},\"126\":{}},\"comment\":{}}],[\"physical\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"position\",{\"_index\":51,\"name\":{\"52\":{},\"189\":{},\"206\":{}},\"comment\":{}}],[\"position_closed\",{\"_index\":33,\"name\":{\"33\":{}},\"comment\":{}}],[\"position_deleted\",{\"_index\":34,\"name\":{\"34\":{}},\"comment\":{}}],[\"position_opened\",{\"_index\":35,\"name\":{\"35\":{}},\"comment\":{}}],[\"position_partially_closed\",{\"_index\":36,\"name\":{\"36\":{}},\"comment\":{}}],[\"position_rolled\",{\"_index\":37,\"name\":{\"37\":{}},\"comment\":{}}],[\"positioncloserequest\",{\"_index\":165,\"name\":{\"225\":{}},\"comment\":{}}],[\"positioncreaterequest\",{\"_index\":160,\"name\":{\"209\":{}},\"comment\":{}}],[\"positionlistresponse\",{\"_index\":158,\"name\":{\"207\":{}},\"comment\":{}}],[\"positionordertype\",{\"_index\":132,\"name\":{\"161\":{}},\"comment\":{}}],[\"positionresponse\",{\"_index\":157,\"name\":{\"204\":{}},\"comment\":{}}],[\"positions\",{\"_index\":159,\"name\":{\"208\":{},\"318\":{}},\"comment\":{}}],[\"positions_otc\",{\"_index\":191,\"name\":{\"319\":{}},\"comment\":{}}],[\"positiontimeinforce\",{\"_index\":136,\"name\":{\"165\":{}},\"comment\":{}}],[\"positionupdaterequest\",{\"_index\":167,\"name\":{\"235\":{}},\"comment\":{}}],[\"preferred\",{\"_index\":63,\"name\":{\"69\":{}},\"comment\":{}}],[\"price\",{\"_index\":333,\"name\":{\"532\":{}},\"comment\":{}}],[\"priceapi\",{\"_index\":374,\"name\":{\"596\":{}},\"comment\":{}}],[\"prices\",{\"_index\":356,\"name\":{\"563\":{},\"599\":{}},\"comment\":{}}],[\"profit\",{\"_index\":186,\"name\":{\"306\":{}},\"comment\":{}}],[\"profitandloss\",{\"_index\":111,\"name\":{\"127\":{}},\"comment\":{}}],[\"profitcurrency\",{\"_index\":187,\"name\":{\"307\":{}},\"comment\":{}}],[\"profitloss\",{\"_index\":55,\"name\":{\"59\":{}},\"comment\":{}}],[\"public_fix_api\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"public_web_api\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"quote\",{\"_index\":135,\"name\":{\"164\":{}},\"comment\":{}}],[\"quoteid\",{\"_index\":166,\"name\":{\"232\":{}},\"comment\":{}}],[\"rates\",{\"_index\":283,\"name\":{\"432\":{}},\"comment\":{}}],[\"reason\",{\"_index\":188,\"name\":{\"308\":{}},\"comment\":{}}],[\"reference\",{\"_index\":112,\"name\":{\"128\":{}},\"comment\":{}}],[\"refresh_token\",{\"_index\":206,\"name\":{\"336\":{},\"353\":{}},\"comment\":{}}],[\"refreshtoken\",{\"_index\":228,\"name\":{\"364\":{}},\"comment\":{}}],[\"rejected\",{\"_index\":48,\"name\":{\"48\":{},\"182\":{}},\"comment\":{}}],[\"remainingallowance\",{\"_index\":350,\"name\":{\"550\":{}},\"comment\":{}}],[\"resolution\",{\"_index\":357,\"name\":{\"564\":{}},\"comment\":{}}],[\"resolutioninmillis\",{\"_index\":373,\"name\":{\"580\":{}},\"comment\":{}}],[\"rest\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"rolloverdetail\",{\"_index\":245,\"name\":{\"385\":{}},\"comment\":{}}],[\"rolloverdetails\",{\"_index\":265,\"name\":{\"410\":{}},\"comment\":{}}],[\"rolloverinfo\",{\"_index\":247,\"name\":{\"387\":{}},\"comment\":{}}],[\"scalingfactor\",{\"_index\":315,\"name\":{\"484\":{},\"520\":{}},\"comment\":{}}],[\"scope\",{\"_index\":207,\"name\":{\"337\":{}},\"comment\":{}}],[\"searchmarkets\",{\"_index\":334,\"name\":{\"533\":{}},\"comment\":{}}],[\"second\",{\"_index\":371,\"name\":{\"578\":{},\"594\":{}},\"comment\":{}}],[\"sectors\",{\"_index\":284,\"name\":{\"433\":{}},\"comment\":{}}],[\"sell\",{\"_index\":131,\"name\":{\"160\":{}},\"comment\":{}}],[\"session\",{\"_index\":219,\"name\":{\"354\":{}},\"comment\":{}}],[\"settlementinfo\",{\"_index\":244,\"name\":{\"384\":{}},\"comment\":{}}],[\"shares\",{\"_index\":285,\"name\":{\"434\":{},\"441\":{}},\"comment\":{}}],[\"size\",{\"_index\":79,\"name\":{\"87\":{},\"104\":{},\"129\":{},\"137\":{},\"200\":{},\"221\":{},\"233\":{},\"274\":{},\"309\":{},\"555\":{}},\"comment\":{}}],[\"slippagefactor\",{\"_index\":238,\"name\":{\"376\":{},\"411\":{}},\"comment\":{}}],[\"snapshot\",{\"_index\":303,\"name\":{\"472\":{},\"497\":{}},\"comment\":{}}],[\"snapshottime\",{\"_index\":346,\"name\":{\"546\":{}},\"comment\":{}}],[\"snapshottimeutc\",{\"_index\":347,\"name\":{\"547\":{}},\"comment\":{}}],[\"specialinfo\",{\"_index\":266,\"name\":{\"412\":{}},\"comment\":{}}],[\"spreadbet\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"sprint_market\",{\"_index\":286,\"name\":{\"435\":{}},\"comment\":{}}],[\"sprintmarketsmaximumexpirytime\",{\"_index\":267,\"name\":{\"413\":{}},\"comment\":{}}],[\"sprintmarketsminimumexpirytime\",{\"_index\":268,\"name\":{\"414\":{}},\"comment\":{}}],[\"status\",{\"_index\":64,\"name\":{\"70\":{},\"100\":{},\"183\":{},\"292\":{},\"310\":{}},\"comment\":{}}],[\"stop\",{\"_index\":140,\"name\":{\"170\":{}},\"comment\":{}}],[\"stop_limit_amended\",{\"_index\":38,\"name\":{\"38\":{}},\"comment\":{}}],[\"stop_order_amended\",{\"_index\":39,\"name\":{\"39\":{}},\"comment\":{}}],[\"stop_order_deleted\",{\"_index\":40,\"name\":{\"40\":{}},\"comment\":{}}],[\"stop_order_filled\",{\"_index\":41,\"name\":{\"41\":{}},\"comment\":{}}],[\"stop_order_opened\",{\"_index\":42,\"name\":{\"42\":{}},\"comment\":{}}],[\"stop_order_rolled\",{\"_index\":43,\"name\":{\"43\":{}},\"comment\":{}}],[\"stopdistance\",{\"_index\":80,\"name\":{\"88\":{},\"222\":{},\"256\":{},\"275\":{},\"284\":{},\"311\":{}},\"comment\":{}}],[\"stoplevel\",{\"_index\":81,\"name\":{\"89\":{},\"201\":{},\"223\":{},\"237\":{},\"276\":{},\"285\":{},\"312\":{}},\"comment\":{}}],[\"stopslimitsallowed\",{\"_index\":269,\"name\":{\"415\":{}},\"comment\":{}}],[\"stream\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"streamingpricesavailable\",{\"_index\":270,\"name\":{\"416\":{},\"521\":{}},\"comment\":{}}],[\"suspended\",{\"_index\":321,\"name\":{\"492\":{}},\"comment\":{}}],[\"suspended_from_dealing\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"switchaccount\",{\"_index\":221,\"name\":{\"357\":{}},\"comment\":{}}],[\"switchaccountresponse\",{\"_index\":213,\"name\":{\"345\":{}},\"comment\":{}}],[\"symbol\",{\"_index\":233,\"name\":{\"370\":{}},\"comment\":{}}],[\"system\",{\"_index\":25,\"name\":{\"25\":{},\"53\":{}},\"comment\":{}}],[\"test_market\",{\"_index\":287,\"name\":{\"436\":{}},\"comment\":{}}],[\"timeinforce\",{\"_index\":164,\"name\":{\"224\":{},\"234\":{},\"257\":{},\"277\":{},\"286\":{}},\"comment\":{}}],[\"timezoneoffset\",{\"_index\":212,\"name\":{\"344\":{}},\"comment\":{}}],[\"to\",{\"_index\":100,\"name\":{\"113\":{},\"143\":{}},\"comment\":{}}],[\"token_type\",{\"_index\":208,\"name\":{\"338\":{}},\"comment\":{}}],[\"totalallowance\",{\"_index\":351,\"name\":{\"551\":{}},\"comment\":{}}],[\"totalpages\",{\"_index\":115,\"name\":{\"134\":{},\"559\":{}},\"comment\":{}}],[\"tradeable\",{\"_index\":322,\"name\":{\"493\":{}},\"comment\":{}}],[\"tradingsession\",{\"_index\":209,\"name\":{\"339\":{}},\"comment\":{}}],[\"trailingstep\",{\"_index\":82,\"name\":{\"90\":{},\"202\":{}},\"comment\":{}}],[\"trailingstop\",{\"_index\":168,\"name\":{\"238\":{},\"313\":{}},\"comment\":{}}],[\"trailingstopdistance\",{\"_index\":83,\"name\":{\"91\":{},\"203\":{},\"239\":{}},\"comment\":{}}],[\"trailingstopincrement\",{\"_index\":169,\"name\":{\"240\":{}},\"comment\":{}}],[\"trailingstoppreference\",{\"_index\":302,\"name\":{\"469\":{}},\"comment\":{}}],[\"trailingstopsenabled\",{\"_index\":217,\"name\":{\"349\":{}},\"comment\":{}}],[\"trailingstopspreference\",{\"_index\":298,\"name\":{\"464\":{}},\"comment\":{}}],[\"transaction\",{\"_index\":104,\"name\":{\"117\":{}},\"comment\":{}}],[\"transactionhistoryrequest\",{\"_index\":118,\"name\":{\"138\":{}},\"comment\":{}}],[\"transactionhistoryresponse\",{\"_index\":120,\"name\":{\"145\":{}},\"comment\":{}}],[\"transactionmetadata\",{\"_index\":116,\"name\":{\"135\":{}},\"comment\":{}}],[\"transactionpaging\",{\"_index\":113,\"name\":{\"131\":{}},\"comment\":{}}],[\"transactions\",{\"_index\":121,\"name\":{\"147\":{}},\"comment\":{}}],[\"transactiontype\",{\"_index\":15,\"name\":{\"15\":{},\"130\":{}},\"comment\":{}}],[\"type\",{\"_index\":90,\"name\":{\"101\":{},\"144\":{},\"278\":{},\"287\":{},\"417\":{}},\"comment\":{}}],[\"unit\",{\"_index\":239,\"name\":{\"377\":{},\"380\":{},\"418\":{},\"443\":{},\"446\":{},\"449\":{},\"452\":{},\"455\":{}},\"comment\":{}}],[\"unknown\",{\"_index\":44,\"name\":{\"44\":{},\"49\":{},\"437\":{}},\"comment\":{}}],[\"updateorder\",{\"_index\":202,\"name\":{\"332\":{}},\"comment\":{}}],[\"updateposition\",{\"_index\":197,\"name\":{\"327\":{}},\"comment\":{}}],[\"updatetime\",{\"_index\":316,\"name\":{\"485\":{},\"522\":{}},\"comment\":{}}],[\"updatetimeutc\",{\"_index\":330,\"name\":{\"523\":{}},\"comment\":{}}],[\"url\",{\"_index\":123,\"name\":{\"149\":{},\"315\":{},\"351\":{},\"527\":{},\"597\":{}},\"comment\":{}}],[\"url_demo\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"url_live\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"value\",{\"_index\":240,\"name\":{\"378\":{},\"381\":{},\"444\":{},\"447\":{},\"450\":{},\"453\":{},\"456\":{}},\"comment\":{}}],[\"valueofonepip\",{\"_index\":271,\"name\":{\"419\":{}},\"comment\":{}}],[\"web\",{\"_index\":26,\"name\":{\"26\":{}},\"comment\":{}}],[\"week\",{\"_index\":372,\"name\":{\"579\":{},\"595\":{}},\"comment\":{}}],[\"withdrawal\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"working_order\",{\"_index\":52,\"name\":{\"54\":{}},\"comment\":{}}],[\"working_order_deleted\",{\"_index\":45,\"name\":{\"45\":{}},\"comment\":{}}],[\"workingorderdata\",{\"_index\":177,\"name\":{\"260\":{}},\"comment\":{}}],[\"workingorders\",{\"_index\":179,\"name\":{\"262\":{},\"320\":{}},\"comment\":{}}],[\"workingorders_otc\",{\"_index\":192,\"name\":{\"321\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/assets/style.css b/docs/assets/style.css new file mode 100644 index 00000000..18b4f8fe --- /dev/null +++ b/docs/assets/style.css @@ -0,0 +1,1367 @@ +:root { + /* Light */ + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --light-color-warning-text: #222; + --light-color-background-warning: #e6e600; + --light-color-icon-background: var(--light-color-background); + --light-color-accent: #c5c7c9; + --light-color-active-menu-item: var(--light-color-accent); + --light-color-text: #222; + --light-color-text-aside: #6e6e6e; + --light-color-link: #1f70c2; + + --light-color-ts-project: #b111c9; + --light-color-ts-module: var(--light-color-ts-project); + --light-color-ts-namespace: var(--light-color-ts-project); + --light-color-ts-enum: #7e6f15; + --light-color-ts-enum-member: var(--light-color-ts-enum); + --light-color-ts-variable: #4760ec; + --light-color-ts-function: #572be7; + --light-color-ts-class: #1f70c2; + --light-color-ts-interface: #108024; + --light-color-ts-constructor: var(--light-color-ts-class); + --light-color-ts-property: var(--light-color-ts-variable); + --light-color-ts-method: var(--light-color-ts-function); + --light-color-ts-call-signature: var(--light-color-ts-method); + --light-color-ts-index-signature: var(--light-color-ts-property); + --light-color-ts-constructor-signature: var(--light-color-ts-constructor); + --light-color-ts-parameter: var(--light-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --light-color-ts-type-parameter: var(--light-color-ts-type-alias); + --light-color-ts-accessor: var(--light-color-ts-property); + --light-color-ts-get-signature: var(--light-color-ts-accessor); + --light-color-ts-set-signature: var(--light-color-ts-accessor); + /* object literal not included as it is not used and will be removed in 0.25 */ + --light-color-ts-type-alias: #d51270; + /* reference not included as links will be colored with the kind that it points to */ + + --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; + + /* Dark */ + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-icon-background: var(--dark-color-background-secondary); + --dark-color-accent: #9096a2; + --dark-color-active-menu-item: #5d5d6a; + --dark-color-text: #f5f5f5; + --dark-color-text-aside: #dddddd; + --dark-color-link: #00aff4; + + --dark-color-ts-project: #e358ff; + --dark-color-ts-module: var(--dark-color-ts-project); + --dark-color-ts-namespace: var(--dark-color-ts-project); + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-enum-member: var(--dark-color-ts-enum); + --dark-color-ts-variable: #798dff; + --dark-color-ts-function: #a280ff; + --dark-color-ts-class: #8ac4ff; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-constructor: var(--dark-color-ts-class); + --dark-color-ts-property: var(--dark-color-ts-variable); + --dark-color-ts-method: var(--dark-color-ts-function); + --dark-color-ts-call-signature: var(--dark-color-ts-method); + --dark-color-ts-index-signature: var(--dark-color-ts-property); + --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); + --dark-color-ts-parameter: var(--dark-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias); + --dark-color-ts-accessor: var(--dark-color-ts-property); + --dark-color-ts-get-signature: var(--dark-color-ts-accessor); + --dark-color-ts-set-signature: var(--dark-color-ts-accessor); + /* object literal not included as it is not used and will be removed in 0.25 */ + --dark-color-ts-type-alias: #ff6492; + /* reference not included as links will be colored with the kind that it points to */ + + --dark-external-icon: url("data:image/svg+xml;utf8,"); + --dark-color-scheme: dark; +} + +@media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); + } +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } +} + +html { + color-scheme: var(--color-scheme); +} + +body { + margin: 0; +} + +:root[data-theme="light"] { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); +} + +:root[data-theme="dark"] { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); +} + +.always-visible, +.always-visible .tsd-signatures { + display: inherit !important; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2; +} + +h1 > a, +h2 > a, +h3 > a, +h4 > a, +h5 > a, +h6 > a { + text-decoration: none; + color: var(--color-text); +} + +h1 { + font-size: 1.875rem; + margin: 0.67rem 0; +} + +h2 { + font-size: 1.5rem; + margin: 0.83rem 0; +} + +h3 { + font-size: 1.25rem; + margin: 1rem 0; +} + +h4 { + font-size: 1.05rem; + margin: 1.33rem 0; +} + +h5 { + font-size: 1rem; + margin: 1.5rem 0; +} + +h6 { + font-size: 0.875rem; + margin: 2.33rem 0; +} + +.uppercase { + text-transform: uppercase; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1700px; + padding: 0 2rem; +} + +/* Footer */ +.tsd-generator { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; +} + +.tsd-generator > p { + margin-top: 0; + margin-bottom: 0; + padding: 0 1rem; +} + +.container-main { + margin: 0 auto; + /* toolbar, footer, margin */ + min-height: calc(100vh - 41px - 56px - 4rem); +} + +@keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } +} +@keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } +} +body { + background: var(--color-background); + font-family: "Segoe UI", sans-serif; + font-size: 16px; + color: var(--color-text); +} + +a { + color: var(--color-link); + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; +} + +code, +pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 0.875rem; + border-radius: 0.8em; +} + +pre { + position: relative; + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; + padding: 10px; + border: 1px solid var(--color-accent); +} +pre code { + padding: 0; + font-size: 100%; +} +pre > button { + position: absolute; + top: 10px; + right: 10px; + opacity: 0; + transition: opacity 0.1s; + box-sizing: border-box; +} +pre:hover > button, +pre > button.visible { + opacity: 1; +} + +blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; +} + +.tsd-typography { + line-height: 1.333em; +} +.tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-typography h4, +.tsd-typography .tsd-index-panel h3, +.tsd-index-panel .tsd-typography h3, +.tsd-typography h5, +.tsd-typography h6 { + font-size: 1em; + margin: 0; +} +.tsd-typography h5, +.tsd-typography h6 { + font-weight: normal; +} +.tsd-typography p, +.tsd-typography ul, +.tsd-typography ol { + margin: 1em 0; +} + +.tsd-breadcrumb { + margin: 0; + padding: 0; + color: var(--color-text-aside); +} +.tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; +} +.tsd-breadcrumb a:hover { + text-decoration: underline; +} +.tsd-breadcrumb li { + display: inline; +} +.tsd-breadcrumb li:after { + content: " / "; +} + +.tsd-comment-tags { + display: flex; + flex-direction: column; +} +dl.tsd-comment-tag-group { + display: flex; + align-items: center; + overflow: hidden; + margin: 0.5em 0; +} +dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; + font-weight: normal; +} +dl.tsd-comment-tag-group dd { + margin: 0; +} +code.tsd-tag { + padding: 0.25em 0.4em; + border: 0.1em solid var(--color-accent); + margin-right: 0.25em; + font-size: 70%; +} +h1 code.tsd-tag:first-of-type { + margin-left: 0.25em; +} + +dl.tsd-comment-tag-group dd:before, +dl.tsd-comment-tag-group dd:after { + content: " "; +} +dl.tsd-comment-tag-group dd pre, +dl.tsd-comment-tag-group dd:after { + clear: both; +} +dl.tsd-comment-tag-group p { + margin: 0; +} + +.tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; +} +.tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; +} + +.tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; +} +.tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; +} +.tsd-filter-input { + display: flex; + width: fit-content; + width: -moz-fit-content; + align-items: center; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + cursor: pointer; +} +.tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; +} +.tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; +} +.tsd-filter-input svg { + cursor: pointer; + width: 1.5em; + height: 1.5em; + margin-right: 0.5em; + border-radius: 0.33em; + /* Leaving this at full opacity breaks event listeners on Firefox. + Don't remove unless you know what you're doing. */ + opacity: 0.99; +} +.tsd-filter-input input[type="checkbox"]:focus + svg { + transform: scale(0.95); +} +.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { + transform: scale(1); +} +.tsd-checkbox-background { + fill: var(--color-accent); +} +input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); +} + +.tsd-theme-toggle { + padding-top: 0.75rem; +} +.tsd-theme-toggle > h4 { + display: inline; + vertical-align: middle; + margin-right: 0.75rem; +} + +.tsd-hierarchy { + list-style: square; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.tsd-panel-group.tsd-index-group { + margin-bottom: 0; +} +.tsd-index-panel .tsd-index-list { + list-style: none; + line-height: 1.333em; + margin: 0; + padding: 0.25rem 0 0 0; + overflow: hidden; + display: grid; + grid-template-columns: repeat(3, 1fr); + column-gap: 1rem; + grid-template-rows: auto; +} +@media (max-width: 1024px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(2, 1fr); + } +} +@media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); + } +} +.tsd-index-panel .tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; +} + +.tsd-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; +} + +.tsd-anchor { + position: relative; + top: -100px; +} + +.tsd-member { + position: relative; +} +.tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; + margin-top: 0; + margin-bottom: 0; + border-bottom: none; +} + +.tsd-navigation.settings { + margin: 1rem 0; +} +.tsd-navigation > a, +.tsd-navigation .tsd-accordion-summary { + width: calc(100% - 0.5rem); +} +.tsd-navigation a, +.tsd-navigation summary > span, +.tsd-page-navigation a { + display: inline-flex; + align-items: center; + padding: 0.25rem; + color: var(--color-text); + text-decoration: none; + box-sizing: border-box; +} +.tsd-navigation a.current, +.tsd-page-navigation a.current { + background: var(--color-active-menu-item); +} +.tsd-navigation a:hover, +.tsd-page-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul, +.tsd-page-navigation ul { + margin-top: 0; + margin-bottom: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li, +.tsd-page-navigation li { + padding: 0; + max-width: 100%; +} +.tsd-nested-navigation { + margin-left: 3rem; +} +.tsd-nested-navigation > li > details { + margin-left: -1.5rem; +} +.tsd-small-nested-navigation { + margin-left: 1.5rem; +} +.tsd-small-nested-navigation > li > details { + margin-left: -1.5rem; +} + +.tsd-nested-navigation > li > a, +.tsd-nested-navigation > li > span { + width: calc(100% - 1.75rem - 0.5rem); +} + +.tsd-page-navigation ul { + padding-left: 1.75rem; +} + +#tsd-sidebar-links a { + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; +} +#tsd-sidebar-links a:last-of-type { + margin-bottom: 0; +} + +a.tsd-index-link { + padding: 0.25rem 0 !important; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; + color: var(--color-text); +} +.tsd-accordion-summary { + list-style-type: none; /* hide marker on non-safari */ + outline: none; /* broken on safari, so just hide it */ +} +.tsd-accordion-summary::-webkit-details-marker { + display: none; /* hide marker on safari */ +} +.tsd-accordion-summary, +.tsd-accordion-summary a { + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + + cursor: pointer; +} +.tsd-accordion-summary a { + width: calc(100% - 1.5rem); +} +.tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; +} +.tsd-index-accordion .tsd-accordion-summary > svg { + margin-left: 0.25rem; +} +.tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; +} +.tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; +} + +.tsd-kind-icon { + margin-right: 0.5rem; + width: 1.25rem; + height: 1.25rem; + min-width: 1.25rem; + min-height: 1.25rem; +} +.tsd-kind-icon path { + transform-origin: center; + transform: scale(1.1); +} +.tsd-signature > .tsd-kind-icon { + margin-right: 0.8rem; +} + +.tsd-panel { + margin-bottom: 2.5rem; +} +.tsd-panel.tsd-member { + margin-bottom: 4rem; +} +.tsd-panel:empty { + display: none; +} +.tsd-panel > h1, +.tsd-panel > h2, +.tsd-panel > h3 { + margin: 1.5rem -1.5rem 0.75rem -1.5rem; + padding: 0 1.5rem 0.75rem 1.5rem; +} +.tsd-panel > h1.tsd-before-signature, +.tsd-panel > h2.tsd-before-signature, +.tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: none; +} + +.tsd-panel-group { + margin: 4rem 0; +} +.tsd-panel-group.tsd-index-group { + margin: 2rem 0; +} +.tsd-panel-group.tsd-index-group details { + margin: 2rem 0; +} + +#tsd-search { + transition: background-color 0.2s; +} +#tsd-search .title { + position: relative; + z-index: 2; +} +#tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 2.5rem; + height: 100%; +} +#tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); +} +#tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; +} +#tsd-search .field input, +#tsd-search .title, +#tsd-toolbar-links a { + transition: opacity 0.2s; +} +#tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +#tsd-search .results li { + padding: 0 10px; + background-color: var(--color-background); +} +#tsd-search .results li:nth-child(even) { + background-color: var(--color-background-secondary); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current, +#tsd-search .results li:hover { + background-color: var(--color-accent); +} +#tsd-search .results a { + display: block; +} +#tsd-search .results a:before { + top: 10px; +} +#tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; +} +#tsd-search.has-focus { + background-color: var(--color-accent); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title, +#tsd-search.has-focus #tsd-toolbar-links a { + z-index: 0; + opacity: 0; +} +#tsd-search.has-focus .results { + visibility: visible; +} +#tsd-search.loading .results li.state.loading { + display: block; +} +#tsd-search.failure .results li.state.failure { + display: block; +} + +#tsd-toolbar-links { + position: absolute; + top: 0; + right: 2rem; + height: 100%; + display: flex; + align-items: center; + justify-content: flex-end; +} +#tsd-toolbar-links a { + margin-left: 1.5rem; +} +#tsd-toolbar-links a:hover { + text-decoration: underline; +} + +.tsd-signature { + margin: 0 0 1rem 0; + padding: 1rem 0.5rem; + border: 1px solid var(--color-accent); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; +} + +.tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; +} + +.tsd-signature-type { + font-style: italic; + font-weight: normal; +} + +.tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + list-style-type: none; +} +.tsd-signatures .tsd-signature { + margin: 0; + border-color: var(--color-accent); + border-width: 1px 0; + transition: background-color 0.1s; +} +.tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; +} + +ul.tsd-parameter-list, +ul.tsd-type-parameter-list { + list-style: square; + margin: 0; + padding-left: 20px; +} +ul.tsd-parameter-list > li.tsd-parameter-signature, +ul.tsd-type-parameter-list > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; +} +ul.tsd-parameter-list h5, +ul.tsd-type-parameter-list h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} +.tsd-sources { + margin-top: 1rem; + font-size: 0.875em; +} +.tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; +} +.tsd-sources ul { + list-style: none; + padding: 0; +} + +.tsd-page-toolbar { + position: sticky; + z-index: 1; + top: 0; + left: 0; + width: 100%; + color: var(--color-text); + background: var(--color-background-secondary); + border-bottom: 1px var(--color-accent) solid; + transition: transform 0.3s ease-in-out; +} +.tsd-page-toolbar a { + color: var(--color-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; + margin: 0 auto; +} +.tsd-page-toolbar .table-cell { + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} +.tsd-page-toolbar .tsd-toolbar-icon { + box-sizing: border-box; + line-height: 0; + padding: 12px 0; +} + +.tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: opacity 0.1s, background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-widget:hover { + opacity: 0.9; +} +.tsd-widget.active { + opacity: 1; + background-color: var(--color-accent); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} + +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +img { + max-width: 100%; +} + +.tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; +} + +.deprecated { + text-decoration: line-through; +} + +.warning { + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); +} + +.tsd-kind-project { + color: var(--color-ts-project); +} +.tsd-kind-module { + color: var(--color-ts-module); +} +.tsd-kind-namespace { + color: var(--color-ts-namespace); +} +.tsd-kind-enum { + color: var(--color-ts-enum); +} +.tsd-kind-enum-member { + color: var(--color-ts-enum-member); +} +.tsd-kind-variable { + color: var(--color-ts-variable); +} +.tsd-kind-function { + color: var(--color-ts-function); +} +.tsd-kind-class { + color: var(--color-ts-class); +} +.tsd-kind-interface { + color: var(--color-ts-interface); +} +.tsd-kind-constructor { + color: var(--color-ts-constructor); +} +.tsd-kind-property { + color: var(--color-ts-property); +} +.tsd-kind-method { + color: var(--color-ts-method); +} +.tsd-kind-call-signature { + color: var(--color-ts-call-signature); +} +.tsd-kind-index-signature { + color: var(--color-ts-index-signature); +} +.tsd-kind-constructor-signature { + color: var(--color-ts-constructor-signature); +} +.tsd-kind-parameter { + color: var(--color-ts-parameter); +} +.tsd-kind-type-literal { + color: var(--color-ts-type-literal); +} +.tsd-kind-type-parameter { + color: var(--color-ts-type-parameter); +} +.tsd-kind-accessor { + color: var(--color-ts-accessor); +} +.tsd-kind-get-signature { + color: var(--color-ts-get-signature); +} +.tsd-kind-set-signature { + color: var(--color-ts-set-signature); +} +.tsd-kind-type-alias { + color: var(--color-ts-type-alias); +} + +/* if we have a kind icon, don't color the text by kind */ +.tsd-kind-icon ~ span { + color: var(--color-text); +} + +* { + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); +} + +*::-webkit-scrollbar { + width: 0.75rem; +} + +*::-webkit-scrollbar-track { + background: var(--color-icon-background); +} + +*::-webkit-scrollbar-thumb { + background-color: var(--color-accent); + border-radius: 999rem; + border: 0.25rem solid var(--color-icon-background); +} + +/* mobile */ +@media (max-width: 769px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } + + .container-main { + display: flex; + } + html .col-content { + float: none; + max-width: 100%; + width: 100%; + } + html .col-sidebar { + position: fixed !important; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + padding: 1.5rem 1.5rem 0 0; + width: 75vw; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + html .col-sidebar > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu .col-sidebar { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu .col-sidebar { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu .col-sidebar { + visibility: visible; + transform: translate(0, 0); + display: flex; + flex-direction: column; + gap: 1.5rem; + max-height: 100vh; + padding: 1rem 2rem; + } + .has-menu .tsd-navigation { + max-height: 100%; + } +} + +/* one sidebar */ +@media (min-width: 770px) { + .container-main { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); + grid-template-areas: "sidebar content"; + margin: 2rem auto; + } + + .col-sidebar { + grid-area: sidebar; + } + .col-content { + grid-area: content; + padding: 0 1rem; + } +} +@media (min-width: 770px) and (max-width: 1399px) { + .col-sidebar { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + padding-top: 1rem; + } + .site-menu { + margin-top: 1rem; + } +} + +/* two sidebars */ +@media (min-width: 1200px) { + .container-main { + grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem); + grid-template-areas: "sidebar content toc"; + } + + .col-sidebar { + display: contents; + } + + .page-menu { + grid-area: toc; + padding-left: 1rem; + } + .site-menu { + grid-area: sidebar; + } + + .site-menu { + margin-top: 1rem 0; + } + + .page-menu, + .site-menu { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + } +} diff --git a/docs/classes/APIClient.html b/docs/classes/APIClient.html new file mode 100644 index 00000000..03c82914 --- /dev/null +++ b/docs/classes/APIClient.html @@ -0,0 +1,207 @@ +APIClient | ig-trading-api
+
+ +
+
+
+
+ +

Class APIClient

+
+

Hierarchy

+
    +
  • APIClient
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Accessors

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
rest: RESTClient
+
+ +
stream: LightstreamerAPI
+
+ +
URL_DEMO: string = 'https://demo-api.ig.com/gateway/deal/'
+
+ +
URL_LIVE: string = 'https://api.ig.com/gateway/deal/'
+
+

Accessors

+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/classes/AccountAPI.html b/docs/classes/AccountAPI.html new file mode 100644 index 00000000..8f05d5e3 --- /dev/null +++ b/docs/classes/AccountAPI.html @@ -0,0 +1,238 @@ +AccountAPI | ig-trading-api
+
+ +
+
+
+
+ +

Class AccountAPI

+
+

Hierarchy

+
    +
  • AccountAPI
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
URL +
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
URL: {
    ACCOUNTS: string;
    HISTORY_ACTIVITY: string;
    HISTORY_TRANSACTIONS: string;
} = ...
+
+

Type declaration

+
    +
  • +
    ACCOUNTS: string
  • +
  • +
    HISTORY_ACTIVITY: string
  • +
  • +
    HISTORY_TRANSACTIONS: string
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/classes/DealingAPI.html b/docs/classes/DealingAPI.html new file mode 100644 index 00000000..4809acc3 --- /dev/null +++ b/docs/classes/DealingAPI.html @@ -0,0 +1,384 @@ +DealingAPI | ig-trading-api
+
+ +
+
+
+
+ +

Class DealingAPI

+
+

Hierarchy

+
    +
  • DealingAPI
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
URL: {
    CONFIRMS: string;
    POSITIONS: string;
    POSITIONS_OTC: string;
    WORKINGORDERS: string;
    WORKINGORDERS_OTC: string;
} = ...
+
+

Type declaration

+
    +
  • +
    CONFIRMS: string
  • +
  • +
    POSITIONS: string
  • +
  • +
    POSITIONS_OTC: string
  • +
  • +
    WORKINGORDERS: string
  • +
  • +
    WORKINGORDERS_OTC: string
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/classes/LoginAPI.html b/docs/classes/LoginAPI.html new file mode 100644 index 00000000..868f8627 --- /dev/null +++ b/docs/classes/LoginAPI.html @@ -0,0 +1,357 @@ +LoginAPI | ig-trading-api
+
+ +
+
+
+
+ +

Class LoginAPI

+
+

Hierarchy

+
    +
  • LoginAPI
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
URL: {
    REFRESH_TOKEN: string;
    SESSION: string;
} = ...
+
+

Type declaration

+
    +
  • +
    REFRESH_TOKEN: string
  • +
  • +
    SESSION: string
+
+

Methods

+
+ +
+
+ +
    + +
  • +

    Creates a session using the IG Mobile App API.

    +

    WARNING: This endpoint only works with a production environment.

    +
    +
    +

    Parameters

    +
      +
    • +
      username: string
    • +
    • +
      password: string
    +

    Returns Promise<TradingSession>

    +
+
+ +
    + +
  • +

    Creates a session from predefined token values.

    +
    +
    +

    Parameters

    +
      +
    • +
      securityToken: string
    • +
    • +
      cst: string
    • +
    • +
      accountId: string
    • +
    • +
      lightstreamerEndpoint: string
    +

    Returns void

    +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/classes/MarketAPI.html b/docs/classes/MarketAPI.html new file mode 100644 index 00000000..73cd1b15 --- /dev/null +++ b/docs/classes/MarketAPI.html @@ -0,0 +1,270 @@ +MarketAPI | ig-trading-api
+
+ +
+
+
+
+ +

Class MarketAPI

+
+

Hierarchy

+
    +
  • MarketAPI
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
price: PriceAPI
+
+ +
URL: {
    MARKETNAVIGATION: string;
    MARKETS: string;
} = ...
+
+

Type declaration

+
    +
  • +
    MARKETNAVIGATION: string
  • +
  • +
    MARKETS: string
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/classes/PriceAPI.html b/docs/classes/PriceAPI.html new file mode 100644 index 00000000..dadbabca --- /dev/null +++ b/docs/classes/PriceAPI.html @@ -0,0 +1,270 @@ +PriceAPI | ig-trading-api
+
+ +
+
+
+
+ +

Class PriceAPI

+
+

Hierarchy

+
    +
  • PriceAPI
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
URL +
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
URL: {
    PRICES: string;
} = ...
+
+

Type declaration

+
    +
  • +
    PRICES: string
+
+

Methods

+
+ +
    + +
  • +

    Returns historical prices for a particular instrument.

    +
    +
    +

    Parameters

    +
      +
    • +
      epic: string
      +

      Instrument identifier

      +
      +
    • +
    • +
      resolution: Resolution
      +

      Time resolution

      +
      +
    • +
    • +
      pointCount: number
      +

      Limits the number of price points (not applicable if a date range has been specified)

      +
      +
    • +
    • +
      pageSize: number = 0
      +

      Number of candles per page of results (defaults to 0, no pagination)

      +
      +
    • +
    • +
      pageNumber: number = 1
      +

      Page of results to return (pagination)

      +
      +
    +

    Returns Promise<HistoricalPricesResponse>

    +
+
+ +
    + +
  • +

    Returns historical prices between given dates.

    +
    +
    +

    Parameters

    +
      +
    • +
      epic: string
      +

      Instrument identifier

      +
      +
    • +
    • +
      resolution: Resolution
      +

      Time resolution

      +
      +
    • +
    • +
      startDate: string
      +

      Start date as ISO 8601 string, i.e. "2021-01-15T00:00:00.000Z"

      +
      +
    • +
    • +
      endDate: string
      +

      End date as ISO 8601 string, i.e. "2021-01-16T00:00:00.000Z"

      +
      +
    • +
    • +
      pageSize: number = 0
      +

      Number of candles per page of results (defaults to 0, no pagination)

      +
      +
    • +
    • +
      pageNumber: number = 1
      +

      Page of results to return (pagination)

      +
      +
    +

    Returns Promise<HistoricalPricesResponse>

    +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/AccountStatus.html b/docs/enums/AccountStatus.html new file mode 100644 index 00000000..7d0cfdea --- /dev/null +++ b/docs/enums/AccountStatus.html @@ -0,0 +1,159 @@ +AccountStatus | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration AccountStatus

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
DISABLED: "DISABLED"
+
+ +
ENABLED: "ENABLED"
+
+ +
SUSPENDED_FROM_DEALING: "SUSPENDED_FROM_DEALING"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/AccountType.html b/docs/enums/AccountType.html new file mode 100644 index 00000000..d7c620ad --- /dev/null +++ b/docs/enums/AccountType.html @@ -0,0 +1,159 @@ +AccountType | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration AccountType

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
CFD: "CFD"
+
+ +
PHYSICAL: "PHYSICAL"
+
+ +
SPREADBET: "SPREADBET"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/ActionType.html b/docs/enums/ActionType.html new file mode 100644 index 00000000..4429e9eb --- /dev/null +++ b/docs/enums/ActionType.html @@ -0,0 +1,264 @@ +ActionType | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration ActionType

+
+
+
+ +
+
+

Enumeration Members

+
+ +
LIMIT_ORDER_AMENDED: "LIMIT_ORDER_AMENDED"
+
+ +
LIMIT_ORDER_DELETED: "LIMIT_ORDER_DELETED"
+
+ +
LIMIT_ORDER_FILLED: "LIMIT_ORDER_FILLED"
+
+ +
LIMIT_ORDER_OPENED: "LIMIT_ORDER_OPENED"
+
+ +
LIMIT_ORDER_ROLLED: "LIMIT_ORDER_ROLLED"
+
+ +
POSITION_CLOSED: "POSITION_CLOSED"
+
+ +
POSITION_DELETED: "POSITION_DELETED"
+
+ +
POSITION_OPENED: "POSITION_OPENED"
+
+ +
POSITION_PARTIALLY_CLOSED: "POSITION_PARTIALLY_CLOSED"
+
+ +
POSITION_ROLLED: "POSITION_ROLLED"
+
+ +
STOP_LIMIT_AMENDED: "STOP_LIMIT_AMENDED"
+
+ +
STOP_ORDER_AMENDED: "STOP_ORDER_AMENDED"
+
+ +
STOP_ORDER_DELETED: "STOP_ORDER_DELETED"
+
+ +
STOP_ORDER_FILLED: "STOP_ORDER_FILLED"
+
+ +
STOP_ORDER_OPENED: "STOP_ORDER_OPENED"
+
+ +
STOP_ORDER_ROLLED: "STOP_ORDER_ROLLED"
+
+ +
UNKNOWN: "UNKNOWN"
+
+ +
WORKING_ORDER_DELETED: "WORKING_ORDER_DELETED"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/ActivityStatus.html b/docs/enums/ActivityStatus.html new file mode 100644 index 00000000..08edfd5f --- /dev/null +++ b/docs/enums/ActivityStatus.html @@ -0,0 +1,159 @@ +ActivityStatus | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration ActivityStatus

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
ACCEPTED: "ACCEPTED"
+
+ +
REJECTED: "REJECTED"
+
+ +
UNKNOWN: "UNKNOWN"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/ActivityType.html b/docs/enums/ActivityType.html new file mode 100644 index 00000000..8859c090 --- /dev/null +++ b/docs/enums/ActivityType.html @@ -0,0 +1,166 @@ +ActivityType | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration ActivityType

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
EDIT_STOP_AND_LIMIT: "EDIT_STOP_AND_LIMIT"
+
+ +
POSITION: "POSITION"
+
+ +
SYSTEM: "SYSTEM"
+
+ +
WORKING_ORDER: "WORKING_ORDER"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/AffectedDealStatus.html b/docs/enums/AffectedDealStatus.html new file mode 100644 index 00000000..96834c12 --- /dev/null +++ b/docs/enums/AffectedDealStatus.html @@ -0,0 +1,173 @@ +AffectedDealStatus | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration AffectedDealStatus

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
AMENDED: "AMENDED"
+
+ +
DELETED: "DELETED"
+
+ +
FULLY_CLOSED: "FULLY_CLOSED"
+
+ +
OPENED: "OPENED"
+
+ +
PARTIALLY_CLOSED: "PARTIALLY_CLOSED"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/Channel.html b/docs/enums/Channel.html new file mode 100644 index 00000000..5157a508 --- /dev/null +++ b/docs/enums/Channel.html @@ -0,0 +1,180 @@ +Channel | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration Channel

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
DEALER: "DEALER"
+
+ +
MOBILE: "MOBILE"
+
+ +
PUBLIC_FIX_API: "PUBLIC_FIX_API"
+
+ +
PUBLIC_WEB_API: "PUBLIC_WEB_API"
+
+ +
SYSTEM: "SYSTEM"
+
+ +
WEB: "WEB"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/DealStatus.html b/docs/enums/DealStatus.html new file mode 100644 index 00000000..c9e6d2f7 --- /dev/null +++ b/docs/enums/DealStatus.html @@ -0,0 +1,152 @@ +DealStatus | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration DealStatus

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
ACCEPTED: "ACCEPTED"
+
+ +
REJECTED: "REJECTED"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/Direction.html b/docs/enums/Direction.html new file mode 100644 index 00000000..19367676 --- /dev/null +++ b/docs/enums/Direction.html @@ -0,0 +1,152 @@ +Direction | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration Direction

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
BUY: "BUY"
+
+ +
SELL: "SELL"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/InstrumentType.html b/docs/enums/InstrumentType.html new file mode 100644 index 00000000..f96e03be --- /dev/null +++ b/docs/enums/InstrumentType.html @@ -0,0 +1,257 @@ +InstrumentType | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration InstrumentType

+
+
+
+ +
+
+

Enumeration Members

+
+ +
BUNGEE_COMMODITIES: "BUNGEE_COMMODITIES"
+
+ +
BUNGEE_CURRENCIES: "BUNGEE_CURRENCIES"
+
+ +
BUNGEE_INDICES: "BUNGEE_INDICES"
+
+ +
COMMODITIES: "COMMODITIES"
+
+ +
CURRENCIES: "CURRENCIES"
+
+ +
INDICES: "INDICES"
+
+ +
OPT_COMMODITIES: "OPT_COMMODITIES"
+
+ +
OPT_CURRENCIES: "OPT_CURRENCIES"
+
+ +
OPT_INDICES: "OPT_INDICES"
+
+ +
OPT_RATES: "OPT_RATES"
+
+ +
OPT_SHARES: "OPT_SHARES"
+
+ +
RATES: "RATES"
+
+ +
SECTORS: "SECTORS"
+
+ +
SHARES: "SHARES"
+
+ +
SPRINT_MARKET: "SPRINT_MARKET"
+
+ +
TEST_MARKET: "TEST_MARKET"
+
+ +
UNKNOWN: "UNKNOWN"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/InstrumentUnit.html b/docs/enums/InstrumentUnit.html new file mode 100644 index 00000000..49d48b65 --- /dev/null +++ b/docs/enums/InstrumentUnit.html @@ -0,0 +1,159 @@ +InstrumentUnit | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration InstrumentUnit

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
AMOUNT: "AMOUNT"
+
+ +
CONTRACTS: "CONTRACTS"
+
+ +
SHARES: "SHARES"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/MarketOrderPreference.html b/docs/enums/MarketOrderPreference.html new file mode 100644 index 00000000..d483440b --- /dev/null +++ b/docs/enums/MarketOrderPreference.html @@ -0,0 +1,159 @@ +MarketOrderPreference | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration MarketOrderPreference

+
+
+
+ +
+
+

Enumeration Members

+
+ +
AVAILABLE_DEFAULT_OFF: "AVAILABLE_DEFAULT_OFF"
+
+ +
AVAILABLE_DEFAULT_ON: "AVAILABLE_DEFAULT_ON"
+
+ +
NOT_AVAILABLE: "NOT_AVAILABLE"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/MarketStatus.html b/docs/enums/MarketStatus.html new file mode 100644 index 00000000..6a557762 --- /dev/null +++ b/docs/enums/MarketStatus.html @@ -0,0 +1,187 @@ +MarketStatus | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration MarketStatus

+
+
+
+ +
+
+

Enumeration Members

+
+ +
CLOSED: "CLOSED"
+
+ +
EDITS_ONLY: "EDITS_ONLY"
+
+ +
OFFLINE: "OFFLINE"
+
+ +
ON_AUCTION: "ON_AUCTION"
+
+ +
ON_AUCTION_NO_EDITS: "ON_AUCTION_NO_EDITS"
+
+ +
SUSPENDED: "SUSPENDED"
+
+ +
TRADEABLE: "TRADEABLE"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/OrderTimeInForce.html b/docs/enums/OrderTimeInForce.html new file mode 100644 index 00000000..efe84bb4 --- /dev/null +++ b/docs/enums/OrderTimeInForce.html @@ -0,0 +1,152 @@ +OrderTimeInForce | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration OrderTimeInForce

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
GOOD_TILL_CANCELLED: "GOOD_TILL_CANCELLED"
+
+ +
GOOD_TILL_DATE: "GOOD_TILL_DATE"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/OrderType.html b/docs/enums/OrderType.html new file mode 100644 index 00000000..7ced2053 --- /dev/null +++ b/docs/enums/OrderType.html @@ -0,0 +1,152 @@ +OrderType | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration OrderType

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
LIMIT: "LIMIT"
+
+ +
STOP: "STOP"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/PositionOrderType.html b/docs/enums/PositionOrderType.html new file mode 100644 index 00000000..88a7f917 --- /dev/null +++ b/docs/enums/PositionOrderType.html @@ -0,0 +1,159 @@ +PositionOrderType | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration PositionOrderType

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
LIMIT: "LIMIT"
+
+ +
MARKET: "MARKET"
+
+ +
QUOTE: "QUOTE"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/PositionTimeInForce.html b/docs/enums/PositionTimeInForce.html new file mode 100644 index 00000000..f09e2f6d --- /dev/null +++ b/docs/enums/PositionTimeInForce.html @@ -0,0 +1,152 @@ +PositionTimeInForce | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration PositionTimeInForce

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
EXECUTE_AND_ELIMINATE: "EXECUTE_AND_ELIMINATE"
+
+ +
FILL_OR_KILL: "FILL_OR_KILL"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/Resolution.html b/docs/enums/Resolution.html new file mode 100644 index 00000000..88214689 --- /dev/null +++ b/docs/enums/Resolution.html @@ -0,0 +1,243 @@ +Resolution | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration Resolution

+
+
+
+ +
+
+

Enumeration Members

+
+ +
DAY: "DAY"
+
+ +
HOUR: "HOUR"
+
+ +
HOUR_2: "HOUR_2"
+
+ +
HOUR_3: "HOUR_3"
+
+ +
HOUR_4: "HOUR_4"
+
+ +
MINUTE: "MINUTE"
+
+ +
MINUTE_10: "MINUTE_10"
+
+ +
MINUTE_15: "MINUTE_15"
+
+ +
MINUTE_2: "MINUTE_2"
+
+ +
MINUTE_3: "MINUTE_3"
+
+ +
MINUTE_30: "MINUTE_30"
+
+ +
MINUTE_5: "MINUTE_5"
+
+ +
MONTH: "MONTH"
+
+ +
SECOND: "SECOND"
+
+ +
WEEK: "WEEK"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/ResolutionInMillis.html b/docs/enums/ResolutionInMillis.html new file mode 100644 index 00000000..12e68b23 --- /dev/null +++ b/docs/enums/ResolutionInMillis.html @@ -0,0 +1,243 @@ +ResolutionInMillis | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration ResolutionInMillis

+
+
+
+ +
+
+

Enumeration Members

+
+ +
DAY: 86400000
+
+ +
HOUR: 3600000
+
+ +
HOUR_2: 7200000
+
+ +
HOUR_3: 10800000
+
+ +
HOUR_4: 14400000
+
+ +
MINUTE: 60000
+
+ +
MINUTE_10: 600000
+
+ +
MINUTE_15: 900000
+
+ +
MINUTE_2: 120000
+
+ +
MINUTE_3: 180000
+
+ +
MINUTE_30: 1800000
+
+ +
MINUTE_5: 300000
+
+ +
MONTH: 2419200000
+
+ +
SECOND: 1000
+
+ +
WEEK: 604800000
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/Status.html b/docs/enums/Status.html new file mode 100644 index 00000000..8dbf74b5 --- /dev/null +++ b/docs/enums/Status.html @@ -0,0 +1,173 @@ +Status | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration Status

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
AMENDED: "AMENDED"
+
+ +
CLOSED: "CLOSED"
+
+ +
DELETED: "DELETED"
+
+ +
OPEN: "OPEN"
+
+ +
PARTIALLY_CLOSED: "PARTIALLY_CLOSED"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/TrailingStopPreference.html b/docs/enums/TrailingStopPreference.html new file mode 100644 index 00000000..a6e4eea1 --- /dev/null +++ b/docs/enums/TrailingStopPreference.html @@ -0,0 +1,152 @@ +TrailingStopPreference | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration TrailingStopPreference

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
AVAILABLE: "AVAILABLE"
+
+ +
NOT_AVAILABLE: "NOT_AVAILABLE"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/enums/TransactionType.html b/docs/enums/TransactionType.html new file mode 100644 index 00000000..4ef05545 --- /dev/null +++ b/docs/enums/TransactionType.html @@ -0,0 +1,166 @@ +TransactionType | ig-trading-api
+
+ +
+
+
+
+ +

Enumeration TransactionType

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
ALL: "ALL"
+
+ +
ALL_DEAL: "ALL_DEAL"
+
+ +
DEPOSIT: "DEPOSIT"
+
+ +
WITHDRAWAL: "WITHDRAWAL"
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 00000000..a317c3a5 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,247 @@ +ig-trading-api
+
+ +
+
+
+
+

ig-trading-api

+

IG Trading API

Language Details Code Coverage License Package Version Dependency Updates

+

Unofficial IG Trading API for Node.js, written in TypeScript and covered by tests.

+

Features

    +
  • Typed. Source code is 100% TypeScript. No need to install external typings.
  • +
  • Tested. Code coverage is 100%. No surprises when using ig-trading-api.
  • +
  • Maintained. Automated security updates. No threats from outdated dependencies.
  • +
  • Documented. Get started with the generated documentation.
  • +
+

Installation

npm

+
npm install ig-trading-api
+
+

Yarn

+
yarn add ig-trading-api
+
+

Usage

You can set the API gateway, when initializing the API client. Use APIClient.URL_DEMO (demo-api.ig.com) for demo accounts and APIClient.URL_LIVE (api.ig.com) for live account access.

+

TypeScript

Recommended:

+
import {APIClient} from 'ig-trading-api';
const client = new APIClient(APIClient.URL_LIVE, 'your-api-key');
const session = await client.rest.login.createSession('your-username', 'your-password');
console.info(`Your client ID is "${session.clientId}".`); +
+

Alternative:

+
import {APIClient} from 'ig-trading-api';
const client = new APIClient(APIClient.URL_LIVE, {
apiKey: 'your-api-key',
username: 'your-username',
password: 'your-password',
}); +
+

Resources

+

IG Instrument Identifier (Epic)

Breakdown for "IX.D.DOW.DAILY.IP":

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SymbolDescriptionExample
IXHours of trading"Index Out of Hours"
DTradability"D" when tradeable
DOWUnderlying market"Dow Jones"
DAILYIndicator for processing method"Daily" funded bet
IPAsset type"Intellectual Property"
+

Epics for testing:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
EpicNameEnvironmentTrading Time
ED.D.DHERGY.CASH.IPDelivery Hero SELive / DemoGermany: 09:00 - 17:30
UC.D.MSFT.CASH.IPMicrosoft CorpLive / DemoGermany: 10:00 - 03:00
UA.D.COINUS.CASH.IPCoinbase Global IncLiveGermany: 15:30 - 22:00
+

Development Setup

You can get up and running in just a few simple steps:

+
    +
  1. Run yarn (to install or update third-party dependencies)
  2. +
  3. Have a look at the .env.defaults file and make a copy (including your own credentials) with the name .env in the root directory of this repository (read more about dotenv files)
  4. +
  5. Run yarn demo:login to test your credentials
  6. +
+

Maintainers

Benny Neugebauer on Stack Exchange

+

Contributing

Contributions, issues and feature requests are welcome!

+

Feel free to check the issues page.

+

License

This project is MIT licensed.

+

⭐️ Show your support ⭐️

Please leave a star if you find this project useful.

+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Account.html b/docs/interfaces/Account.html new file mode 100644 index 00000000..f8f81211 --- /dev/null +++ b/docs/interfaces/Account.html @@ -0,0 +1,212 @@ +Account | ig-trading-api
+
+ +
+
+
+
+ +

Interface Account

+
+

Hierarchy

+
    +
  • Account
+
+
+
+ +
+
+

Properties

+
+ +
accountAlias?: any
+
+ +
accountId: string
+
+ +
accountName: string
+
+ +
accountType: AccountType
+
+ +
balance: Balance
+
+ +
canTransferFrom: boolean
+
+ +
canTransferTo: boolean
+
+ +
currency: string
+
+ +
preferred: boolean
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/AccountsResponse.html b/docs/interfaces/AccountsResponse.html new file mode 100644 index 00000000..e441c823 --- /dev/null +++ b/docs/interfaces/AccountsResponse.html @@ -0,0 +1,149 @@ +AccountsResponse | ig-trading-api
+
+ +
+
+
+
+ +

Interface AccountsResponse

+
+

Hierarchy

+
    +
  • AccountsResponse
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
accounts: Account[]
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Action.html b/docs/interfaces/Action.html new file mode 100644 index 00000000..587213b4 --- /dev/null +++ b/docs/interfaces/Action.html @@ -0,0 +1,156 @@ +Action | ig-trading-api
+
+ +
+
+
+
+ +

Interface Action

+
+

Hierarchy

+
    +
  • Action
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
actionType: ActionType
+
+ +
affectedDealId: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Activity.html b/docs/interfaces/Activity.html new file mode 100644 index 00000000..6c0bcf58 --- /dev/null +++ b/docs/interfaces/Activity.html @@ -0,0 +1,205 @@ +Activity | ig-trading-api
+
+ +
+
+
+
+ +

Interface Activity

+
+

Hierarchy

+
    +
  • Activity
+
+
+
+ +
+
+

Properties

+
+ +
channel: Channel
+
+ +
date: Date
+
+ +
dealId: string
+
+ +
description: string
+
+ +
details?: Details
+
+ +
epic: string
+
+ +
period: string
+
+ +
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/ActivityHistoryRequest.html b/docs/interfaces/ActivityHistoryRequest.html new file mode 100644 index 00000000..7c68f0bf --- /dev/null +++ b/docs/interfaces/ActivityHistoryRequest.html @@ -0,0 +1,184 @@ +ActivityHistoryRequest | ig-trading-api
+
+ +
+
+
+
+ +

Interface ActivityHistoryRequest

+
+

Hierarchy

+
    +
  • ActivityHistoryRequest
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
dealId?: string
+
+ +
detailed?: boolean
+
+ +
filter?: string
+
+ +
from?: string
+
+ +
pageSize?: number
+
+ +
to?: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/ActivityHistoryResponse.html b/docs/interfaces/ActivityHistoryResponse.html new file mode 100644 index 00000000..36b17ec3 --- /dev/null +++ b/docs/interfaces/ActivityHistoryResponse.html @@ -0,0 +1,156 @@ +ActivityHistoryResponse | ig-trading-api
+
+ +
+
+
+
+ +

Interface ActivityHistoryResponse

+
+

Hierarchy

+
    +
  • ActivityHistoryResponse
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
activities: Activity[]
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/ActivityMetadata.html b/docs/interfaces/ActivityMetadata.html new file mode 100644 index 00000000..2426b70b --- /dev/null +++ b/docs/interfaces/ActivityMetadata.html @@ -0,0 +1,149 @@ +ActivityMetadata | ig-trading-api
+
+ +
+
+
+
+ +

Interface ActivityMetadata

+
+

Hierarchy

+
    +
  • ActivityMetadata
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/ActivityPaging.html b/docs/interfaces/ActivityPaging.html new file mode 100644 index 00000000..a0b29532 --- /dev/null +++ b/docs/interfaces/ActivityPaging.html @@ -0,0 +1,156 @@ +ActivityPaging | ig-trading-api
+
+ +
+
+
+
+ +

Interface ActivityPaging

+
+

Hierarchy

+
    +
  • ActivityPaging
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
next: string
+
+ +
size: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/AffectedDeal.html b/docs/interfaces/AffectedDeal.html new file mode 100644 index 00000000..67706e20 --- /dev/null +++ b/docs/interfaces/AffectedDeal.html @@ -0,0 +1,156 @@ +AffectedDeal | ig-trading-api
+
+ +
+
+
+
+ +

Interface AffectedDeal

+
+

Hierarchy

+
    +
  • AffectedDeal
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
dealId: string
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Balance.html b/docs/interfaces/Balance.html new file mode 100644 index 00000000..b5cad948 --- /dev/null +++ b/docs/interfaces/Balance.html @@ -0,0 +1,170 @@ +Balance | ig-trading-api
+
+ +
+
+
+
+ +

Interface Balance

+
+

Hierarchy

+
    +
  • Balance
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
available: number
+
+ +
balance: number
+
+ +
deposit: number
+
+ +
profitLoss: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/BidAsk.html b/docs/interfaces/BidAsk.html new file mode 100644 index 00000000..054c0bc5 --- /dev/null +++ b/docs/interfaces/BidAsk.html @@ -0,0 +1,163 @@ +BidAsk | ig-trading-api
+
+ +
+
+
+
+ +

Interface BidAsk

+
+

Hierarchy

+
    +
  • BidAsk
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
ask: number
+
+ +
bid: number
+
+ +
lastTraded: null | number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/CandleStick.html b/docs/interfaces/CandleStick.html new file mode 100644 index 00000000..173644da --- /dev/null +++ b/docs/interfaces/CandleStick.html @@ -0,0 +1,191 @@ +CandleStick | ig-trading-api
+
+ +
+
+
+
+ +

Interface CandleStick

+
+

Hierarchy

+
    +
  • CandleStick
+
+
+
+ +
+
+

Properties

+
+ +
closePrice: BidAsk
+
+ +
highPrice: BidAsk
+
+ +
lastTradedVolume: number
+
+ +
lowPrice: BidAsk
+
+ +
openPrice: BidAsk
+
+ +
snapshotTime: string
+
+ +
snapshotTimeUTC: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Currency.html b/docs/interfaces/Currency.html new file mode 100644 index 00000000..4e070410 --- /dev/null +++ b/docs/interfaces/Currency.html @@ -0,0 +1,177 @@ +Currency | ig-trading-api
+
+ +
+
+
+
+ +

Interface Currency

+
+

Hierarchy

+
    +
  • Currency
+
+
+
+ +
+
+

Properties

+
+ +
baseExchangeRate: number
+
+ +
code: string
+
+ +
exchangeRate: number
+
+ +
isDefault: boolean
+
+ +
symbol: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/DealConfirmation.html b/docs/interfaces/DealConfirmation.html new file mode 100644 index 00000000..352bf94e --- /dev/null +++ b/docs/interfaces/DealConfirmation.html @@ -0,0 +1,282 @@ +DealConfirmation | ig-trading-api
+
+ +
+
+
+
+ +

Interface DealConfirmation

+
+

Hierarchy

+
    +
  • DealConfirmation
+
+
+
+ +
+
+

Properties

+
+ +
affectedDeals: AffectedDeal[]
+
+ +
date: Date
+
+ +
dealId: string
+
+ +
dealReference: string
+
+ +
dealStatus: DealStatus
+
+ +
direction: Direction
+
+ +
epic: string
+
+ +
expiry: string
+
+ +
guaranteedStop: boolean
+
+ +
level: number
+
+ +
limitDistance?: number
+
+ +
limitLevel?: number
+
+ +
profit?: number
+
+ +
profitCurrency?: string
+
+ +
reason: string
+
+ +
size: number
+
+ +
status: Status
+
+ +
stopDistance?: number
+
+ +
stopLevel?: number
+
+ +
trailingStop: boolean
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/DealReferenceResponse.html b/docs/interfaces/DealReferenceResponse.html new file mode 100644 index 00000000..ebaf9f96 --- /dev/null +++ b/docs/interfaces/DealReferenceResponse.html @@ -0,0 +1,149 @@ +DealReferenceResponse | ig-trading-api
+
+ +
+
+
+
+ +

Interface DealReferenceResponse

+
+

Hierarchy

+
    +
  • DealReferenceResponse
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
dealReference: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/DealingRules.html b/docs/interfaces/DealingRules.html new file mode 100644 index 00000000..cd574ff5 --- /dev/null +++ b/docs/interfaces/DealingRules.html @@ -0,0 +1,191 @@ +DealingRules | ig-trading-api
+
+ +
+
+
+
+ +

Interface DealingRules

+
+

Hierarchy

+
    +
  • DealingRules
+
+
+
+ +
+
+

Properties

+
+ +
marketOrderPreference: MarketOrderPreference
+
+ +
maxStopOrLimitDistance: MaxStopOrLimitDistance
+
+ +
minControlledRiskStopDistance: MinControlledRiskStopDistance
+
+ +
minDealSize: MinDealSize
+
+ +
minNormalStopOrLimitDistance: MinNormalStopOrLimitDistance
+
+ +
minStepDistance: MinStepDistance
+
+ +
trailingStopsPreference: TrailingStopPreference
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Details.html b/docs/interfaces/Details.html new file mode 100644 index 00000000..0cdffb77 --- /dev/null +++ b/docs/interfaces/Details.html @@ -0,0 +1,247 @@ +Details | ig-trading-api
+
+ +
+
+
+
+ +

Interface Details

+
+

Hierarchy

+
    +
  • Details
+
+
+
+ +
+
+

Properties

+
+ +
actions: Action[]
+
+ +
currency: string
+
+ +
dealReference: string
+
+ +
direction: Direction
+
+ +
goodTillDate: string
+
+ +
guaranteedStop: boolean
+
+ +
level: number
+
+ +
limitDistance?: number
+
+ +
limitLevel?: number
+
+ +
marketName: string
+
+ +
size: number
+
+ +
stopDistance?: any
+
+ +
stopLevel?: any
+
+ +
trailingStep?: any
+
+ +
trailingStopDistance?: any
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/ExpiryDetail.html b/docs/interfaces/ExpiryDetail.html new file mode 100644 index 00000000..1362bf1b --- /dev/null +++ b/docs/interfaces/ExpiryDetail.html @@ -0,0 +1,156 @@ +ExpiryDetail | ig-trading-api
+
+ +
+
+
+
+ +

Interface ExpiryDetail

+
+

Hierarchy

+
    +
  • ExpiryDetail
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
lastDealingDate: string
+
+ +
settlementInfo: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/HistoricalPricesAllowance.html b/docs/interfaces/HistoricalPricesAllowance.html new file mode 100644 index 00000000..232e2f42 --- /dev/null +++ b/docs/interfaces/HistoricalPricesAllowance.html @@ -0,0 +1,163 @@ +HistoricalPricesAllowance | ig-trading-api
+
+ +
+
+
+
+ +

Interface HistoricalPricesAllowance

+
+

Hierarchy

+
    +
  • HistoricalPricesAllowance
+
+
+
+ +
+
+

Properties

+
+ +
allowanceExpiry: number
+
+ +
remainingAllowance: number
+
+ +
totalAllowance: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/HistoricalPricesMetadata.html b/docs/interfaces/HistoricalPricesMetadata.html new file mode 100644 index 00000000..242b494e --- /dev/null +++ b/docs/interfaces/HistoricalPricesMetadata.html @@ -0,0 +1,163 @@ +HistoricalPricesMetadata | ig-trading-api
+
+ +
+
+
+
+ +

Interface HistoricalPricesMetadata

+
+

Hierarchy

+
    +
  • HistoricalPricesMetadata
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
+
+ +
size: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/HistoricalPricesPagination.html b/docs/interfaces/HistoricalPricesPagination.html new file mode 100644 index 00000000..de88cb78 --- /dev/null +++ b/docs/interfaces/HistoricalPricesPagination.html @@ -0,0 +1,163 @@ +HistoricalPricesPagination | ig-trading-api
+
+ +
+
+
+
+ +

Interface HistoricalPricesPagination

+
+

Hierarchy

+
    +
  • HistoricalPricesPagination
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
pageNumber: number
+
+ +
pageSize: number
+
+ +
totalPages: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/HistoricalPricesResponse.html b/docs/interfaces/HistoricalPricesResponse.html new file mode 100644 index 00000000..3713ad29 --- /dev/null +++ b/docs/interfaces/HistoricalPricesResponse.html @@ -0,0 +1,163 @@ +HistoricalPricesResponse | ig-trading-api
+
+ +
+
+
+
+ +

Interface HistoricalPricesResponse

+
+

Hierarchy

+
    +
  • HistoricalPricesResponse
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
instrumentType: InstrumentType
+
+ +
+
+ +
prices: CandleStick[]
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Instrument.html b/docs/interfaces/Instrument.html new file mode 100644 index 00000000..4c5d20a7 --- /dev/null +++ b/docs/interfaces/Instrument.html @@ -0,0 +1,356 @@ +Instrument | ig-trading-api
+
+ +
+
+
+
+ +

Interface Instrument

+
+

Hierarchy

+
    +
  • Instrument
+
+
+
+ +
+
+

Properties

+
+ +
chartCode: string
+
+ +
contractSize: string
+
+ +
controlledRiskAllowed: boolean
+
+ +
country: string
+
+ +
currencies: Currency[]
+
+ +
epic: string
+
+ +
expiry: string
+
+ +
expiryDetails?: ExpiryDetail
+
+ +
forceOpenAllowed: boolean
+
+ +
limitedRiskPremium: LimitedRiskPremium
+
+ +
lotSize: number
+
+ +
marginDepositBands: MarginDepositBand[]
+
+ +
marginFactor: number
+
+ +
marginFactorUnit: string
+
+ +
marketId: string
+
+ +
name: string
+
+ +
newsCode: string
+
+ +
onePipMeans: string
+
+ +
openingHours?: {
    marketTimes: string[];
}
+
+

Type declaration

+
    +
  • +
    marketTimes: string[]
+
+ +
rolloverDetails?: RolloverDetail
+
+ +
slippageFactor: SlippageFactor
+
+ +
specialInfo: string[]
+
+ +
sprintMarketsMaximumExpiryTime?: number
+

For sprint markets only, the maximum value to be specified as the expiry of a sprint markets trade.

+
+
+
+ +
sprintMarketsMinimumExpiryTime?: number
+

For sprint markets only, the minimum value to be specified as the expiry of a sprint markets trade.

+
+
+
+ +
stopsLimitsAllowed: boolean
+
+ +
streamingPricesAvailable: boolean
+
+ +
+
+ +
+
+ +
valueOfOnePip: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/LimitedRiskPremium.html b/docs/interfaces/LimitedRiskPremium.html new file mode 100644 index 00000000..b1fb0bc8 --- /dev/null +++ b/docs/interfaces/LimitedRiskPremium.html @@ -0,0 +1,156 @@ +LimitedRiskPremium | ig-trading-api
+
+ +
+
+
+
+ +

Interface LimitedRiskPremium

+
+

Hierarchy

+
    +
  • LimitedRiskPremium
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
unit: string
+
+ +
value: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/MarginDepositBand.html b/docs/interfaces/MarginDepositBand.html new file mode 100644 index 00000000..695484ac --- /dev/null +++ b/docs/interfaces/MarginDepositBand.html @@ -0,0 +1,170 @@ +MarginDepositBand | ig-trading-api
+
+ +
+
+
+
+ +

Interface MarginDepositBand

+
+

Hierarchy

+
    +
  • MarginDepositBand
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
currency: string
+
+ +
margin: number
+
+ +
max?: number
+
+ +
min: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Market.html b/docs/interfaces/Market.html new file mode 100644 index 00000000..ade3d7ee --- /dev/null +++ b/docs/interfaces/Market.html @@ -0,0 +1,254 @@ +Market | ig-trading-api
+
+ +
+
+
+
+ +

Interface Market

+
+

Hierarchy

+
    +
  • Market
+
+
+
+ +
+
+

Properties

+
+ +
bid?: number
+
+ +
delayTime: number
+
+ +
epic: string
+
+ +
expiry: string
+
+ +
high?: number
+
+ +
instrumentName: string
+
+ +
instrumentType: string
+
+ +
low?: number
+
+ +
marketStatus: string
+
+ +
netChange: number
+
+ +
offer?: number
+
+ +
percentageChange: number
+
+ +
scalingFactor: number
+
+ +
streamingPricesAvailable: boolean
+
+ +
updateTime: string
+
+ +
updateTimeUTC: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/MarketDetail.html b/docs/interfaces/MarketDetail.html new file mode 100644 index 00000000..d4c37e0f --- /dev/null +++ b/docs/interfaces/MarketDetail.html @@ -0,0 +1,163 @@ +MarketDetail | ig-trading-api
+
+ +
+
+
+
+ +

Interface MarketDetail

+
+

Hierarchy

+
    +
  • MarketDetail
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
dealingRules: DealingRules
+
+ +
instrument: Instrument
+
+ +
snapshot: Snapshot
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/MarketNavigation.html b/docs/interfaces/MarketNavigation.html new file mode 100644 index 00000000..629fb936 --- /dev/null +++ b/docs/interfaces/MarketNavigation.html @@ -0,0 +1,156 @@ +MarketNavigation | ig-trading-api
+
+ +
+
+
+
+ +

Interface MarketNavigation

+
+

Hierarchy

+
    +
  • MarketNavigation
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
markets?: Market[]
+
+ +
nodes?: MarketNode[]
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/MarketNode.html b/docs/interfaces/MarketNode.html new file mode 100644 index 00000000..480224e1 --- /dev/null +++ b/docs/interfaces/MarketNode.html @@ -0,0 +1,156 @@ +MarketNode | ig-trading-api
+
+ +
+
+
+
+ +

Interface MarketNode

+
+

Hierarchy

+
    +
  • MarketNode
+
+
+
+ +
+
+

Properties

+
id +name +
+
+

Properties

+
+ +
id: string
+
+ +
name: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/MarketSearch.html b/docs/interfaces/MarketSearch.html new file mode 100644 index 00000000..b84504ee --- /dev/null +++ b/docs/interfaces/MarketSearch.html @@ -0,0 +1,149 @@ +MarketSearch | ig-trading-api
+
+ +
+
+
+
+ +

Interface MarketSearch

+
+

Hierarchy

+
    +
  • MarketSearch
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
markets: Market[]
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/MaxStopOrLimitDistance.html b/docs/interfaces/MaxStopOrLimitDistance.html new file mode 100644 index 00000000..eae488dd --- /dev/null +++ b/docs/interfaces/MaxStopOrLimitDistance.html @@ -0,0 +1,156 @@ +MaxStopOrLimitDistance | ig-trading-api
+
+ +
+
+
+
+ +

Interface MaxStopOrLimitDistance

+
+

Hierarchy

+
    +
  • MaxStopOrLimitDistance
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
unit: string
+
+ +
value: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/MinControlledRiskStopDistance.html b/docs/interfaces/MinControlledRiskStopDistance.html new file mode 100644 index 00000000..4d675892 --- /dev/null +++ b/docs/interfaces/MinControlledRiskStopDistance.html @@ -0,0 +1,156 @@ +MinControlledRiskStopDistance | ig-trading-api
+
+ +
+
+
+
+ +

Interface MinControlledRiskStopDistance

+
+

Hierarchy

+
    +
  • MinControlledRiskStopDistance
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
unit: string
+
+ +
value: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/MinDealSize.html b/docs/interfaces/MinDealSize.html new file mode 100644 index 00000000..b6df4165 --- /dev/null +++ b/docs/interfaces/MinDealSize.html @@ -0,0 +1,156 @@ +MinDealSize | ig-trading-api
+
+ +
+
+
+
+ +

Interface MinDealSize

+
+

Hierarchy

+
    +
  • MinDealSize
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
unit: string
+
+ +
value: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/MinNormalStopOrLimitDistance.html b/docs/interfaces/MinNormalStopOrLimitDistance.html new file mode 100644 index 00000000..f733c845 --- /dev/null +++ b/docs/interfaces/MinNormalStopOrLimitDistance.html @@ -0,0 +1,156 @@ +MinNormalStopOrLimitDistance | ig-trading-api
+
+ +
+
+
+
+ +

Interface MinNormalStopOrLimitDistance

+
+

Hierarchy

+
    +
  • MinNormalStopOrLimitDistance
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
unit: string
+
+ +
value: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/MinStepDistance.html b/docs/interfaces/MinStepDistance.html new file mode 100644 index 00000000..977494b6 --- /dev/null +++ b/docs/interfaces/MinStepDistance.html @@ -0,0 +1,156 @@ +MinStepDistance | ig-trading-api
+
+ +
+
+
+
+ +

Interface MinStepDistance

+
+

Hierarchy

+
    +
  • MinStepDistance
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
unit: string
+
+ +
value: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/OauthToken.html b/docs/interfaces/OauthToken.html new file mode 100644 index 00000000..48ef6b3c --- /dev/null +++ b/docs/interfaces/OauthToken.html @@ -0,0 +1,177 @@ +OauthToken | ig-trading-api
+
+ +
+
+
+
+ +

Interface OauthToken

+
+

Hierarchy

+
    +
  • OauthToken
+
+
+
+ +
+
+

Properties

+
+ +
access_token: string
+
+ +
expires_in: string
+
+ +
refresh_token: string
+
+ +
scope: string
+
+ +
token_type: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Order.html b/docs/interfaces/Order.html new file mode 100644 index 00000000..914cbcae --- /dev/null +++ b/docs/interfaces/Order.html @@ -0,0 +1,254 @@ +Order | ig-trading-api
+
+ +
+
+
+
+ +

Interface Order

+
+

Hierarchy

+
    +
  • Order
+
+
+
+ +
+
+

Properties

+
+ +
createdDate: Date
+
+ +
createdDateUTC: Date
+
+ +
currencyCode: string
+
+ +
dealId: string
+
+ +
direction: Direction
+
+ +
dma: boolean
+
+ +
epic: string
+
+ +
goodTillDate?: Date
+
+ +
goodTillDateISO?: Date
+
+ +
guaranteedStop: boolean
+
+ +
limitDistance: number
+
+ +
orderLevel: number
+
+ +
orderSize: number
+
+ +
orderType: OrderType
+
+ +
stopDistance: number
+
+ +
timeInForce: OrderTimeInForce
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/OrderCreateRequest.html b/docs/interfaces/OrderCreateRequest.html new file mode 100644 index 00000000..a35a115b --- /dev/null +++ b/docs/interfaces/OrderCreateRequest.html @@ -0,0 +1,247 @@ +OrderCreateRequest | ig-trading-api
+
+ +
+
+
+
+ +

Interface OrderCreateRequest

+
+

Hierarchy

+
    +
  • OrderCreateRequest
+
+
+
+ +
+
+

Properties

+
+ +
currencyCode: string
+
+ +
direction: Direction
+
+ +
epic: string
+
+ +
expiry: string
+
+ +
forceOpen: Boolean
+
+ +
goodTillDate?: Date
+
+ +
guaranteedStop: Boolean
+
+ +
level: number
+
+ +
limitDistance?: number
+
+ +
limitLevel?: number
+
+ +
size: number
+
+ +
stopDistance?: number
+
+ +
stopLevel?: number
+
+ +
timeInForce: OrderTimeInForce
+
+ +
type: OrderType
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/OrderListResponse.html b/docs/interfaces/OrderListResponse.html new file mode 100644 index 00000000..dfcd3c54 --- /dev/null +++ b/docs/interfaces/OrderListResponse.html @@ -0,0 +1,149 @@ +OrderListResponse | ig-trading-api
+
+ +
+
+
+
+ +

Interface OrderListResponse

+
+

Hierarchy

+
    +
  • OrderListResponse
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
workingOrders: OrderResponse[]
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/OrderResponse.html b/docs/interfaces/OrderResponse.html new file mode 100644 index 00000000..b23b0599 --- /dev/null +++ b/docs/interfaces/OrderResponse.html @@ -0,0 +1,156 @@ +OrderResponse | ig-trading-api
+
+ +
+
+
+
+ +

Interface OrderResponse

+
+

Hierarchy

+
    +
  • OrderResponse
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
marketData: Market
+
+ +
workingOrderData: Order
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/OrderUpdateRequest.html b/docs/interfaces/OrderUpdateRequest.html new file mode 100644 index 00000000..48869d3e --- /dev/null +++ b/docs/interfaces/OrderUpdateRequest.html @@ -0,0 +1,198 @@ +OrderUpdateRequest | ig-trading-api
+
+ +
+
+
+
+ +

Interface OrderUpdateRequest

+
+

Hierarchy

+
    +
  • OrderUpdateRequest
+
+
+
+ +
+
+

Properties

+
+ +
goodTillDate?: Date
+
+ +
level: number
+
+ +
limitDistance?: number
+
+ +
limitLevel?: number
+
+ +
stopDistance?: number
+
+ +
stopLevel?: number
+
+ +
timeInForce: OrderTimeInForce
+
+ +
type: OrderType
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Position.html b/docs/interfaces/Position.html new file mode 100644 index 00000000..40fa8cf7 --- /dev/null +++ b/docs/interfaces/Position.html @@ -0,0 +1,240 @@ +Position | ig-trading-api
+
+ +
+
+
+
+ +

Interface Position

+
+

Hierarchy

+
    +
  • Position
+
+
+
+ +
+
+

Properties

+
+ +
contractSize: number
+
+ +
controlledRisk: boolean
+
+ +
createdDate: Date
+
+ +
createdDateUTC: Date
+
+ +
currency: string
+
+ +
dealId: string
+
+ +
dealReference: string
+
+ +
direction: Direction
+
+ +
level: number
+
+ +
limitLevel?: number
+
+ +
size: number
+
+ +
stopLevel?: number
+
+ +
trailingStep?: number
+
+ +
trailingStopDistance?: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/PositionCloseRequest.html b/docs/interfaces/PositionCloseRequest.html new file mode 100644 index 00000000..88b97fab --- /dev/null +++ b/docs/interfaces/PositionCloseRequest.html @@ -0,0 +1,205 @@ +PositionCloseRequest | ig-trading-api
+
+ +
+
+
+
+ +

Interface PositionCloseRequest

+
+

Hierarchy

+
    +
  • PositionCloseRequest
+
+
+
+ +
+
+

Properties

+
+ +
dealId?: string
+
+ +
direction: Direction
+
+ +
epic?: string
+
+ +
expiry: string
+
+ +
level: number
+
+ +
+
+ +
quoteId?: string
+
+ +
size: number
+
+ +
timeInForce?: PositionTimeInForce
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/PositionCreateRequest.html b/docs/interfaces/PositionCreateRequest.html new file mode 100644 index 00000000..e9902dd2 --- /dev/null +++ b/docs/interfaces/PositionCreateRequest.html @@ -0,0 +1,247 @@ +PositionCreateRequest | ig-trading-api
+
+ +
+
+
+
+ +

Interface PositionCreateRequest

+
+

Hierarchy

+
    +
  • PositionCreateRequest
+
+
+
+ +
+
+

Properties

+
+ +
currencyCode: string
+
+ +
direction: Direction
+
+ +
epic: string
+
+ +
expiry: string
+
+ +
forceOpen: Boolean
+
+ +
goodTillDate?: string
+
+ +
guaranteedStop: Boolean
+
+ +
level?: number
+
+ +
limitDistance?: number
+
+ +
limitLevel?: number
+
+ +
+
+ +
size: number
+
+ +
stopDistance?: number
+
+ +
stopLevel?: number
+
+ +
timeInForce?: PositionTimeInForce
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/PositionListResponse.html b/docs/interfaces/PositionListResponse.html new file mode 100644 index 00000000..009bd9b9 --- /dev/null +++ b/docs/interfaces/PositionListResponse.html @@ -0,0 +1,149 @@ +PositionListResponse | ig-trading-api
+
+ +
+
+
+
+ +

Interface PositionListResponse

+
+

Hierarchy

+
    +
  • PositionListResponse
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
positions: PositionResponse[]
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/PositionResponse.html b/docs/interfaces/PositionResponse.html new file mode 100644 index 00000000..017d1c5f --- /dev/null +++ b/docs/interfaces/PositionResponse.html @@ -0,0 +1,156 @@ +PositionResponse | ig-trading-api
+
+ +
+
+
+
+ +

Interface PositionResponse

+
+

Hierarchy

+
    +
  • PositionResponse
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
market: Market
+
+ +
position: Position
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/PositionUpdateRequest.html b/docs/interfaces/PositionUpdateRequest.html new file mode 100644 index 00000000..e9b8dbaf --- /dev/null +++ b/docs/interfaces/PositionUpdateRequest.html @@ -0,0 +1,177 @@ +PositionUpdateRequest | ig-trading-api
+
+ +
+
+
+
+ +

Interface PositionUpdateRequest

+
+

Hierarchy

+
    +
  • PositionUpdateRequest
+
+
+
+ +
+
+

Properties

+
+ +
limitLevel?: number
+
+ +
stopLevel?: number
+
+ +
trailingStop?: Boolean
+
+ +
trailingStopDistance?: number
+
+ +
trailingStopIncrement?: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/RolloverDetail.html b/docs/interfaces/RolloverDetail.html new file mode 100644 index 00000000..dfbd7181 --- /dev/null +++ b/docs/interfaces/RolloverDetail.html @@ -0,0 +1,156 @@ +RolloverDetail | ig-trading-api
+
+ +
+
+
+
+ +

Interface RolloverDetail

+
+

Hierarchy

+
    +
  • RolloverDetail
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
lastRolloverTime: string
+
+ +
rolloverInfo: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/SlippageFactor.html b/docs/interfaces/SlippageFactor.html new file mode 100644 index 00000000..905a4130 --- /dev/null +++ b/docs/interfaces/SlippageFactor.html @@ -0,0 +1,156 @@ +SlippageFactor | ig-trading-api
+
+ +
+
+
+
+ +

Interface SlippageFactor

+
+

Hierarchy

+
    +
  • SlippageFactor
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
unit: string
+
+ +
value: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Snapshot.html b/docs/interfaces/Snapshot.html new file mode 100644 index 00000000..15371f60 --- /dev/null +++ b/docs/interfaces/Snapshot.html @@ -0,0 +1,233 @@ +Snapshot | ig-trading-api
+
+ +
+
+
+
+ +

Interface Snapshot

+
+

Hierarchy

+
    +
  • Snapshot
+
+
+
+ +
+
+

Properties

+
+ +
bid: number
+
+ +
binaryOdds?: number
+
+ +
controlledRiskExtraSpread: number
+
+ +
decimalPlacesFactor: number
+
+ +
delayTime: number
+
+ +
high: number
+
+ +
low: number
+
+ +
marketStatus: MarketStatus
+
+ +
netChange: number
+
+ +
offer: number
+
+ +
percentageChange: number
+
+ +
scalingFactor: number
+
+ +
updateTime: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/SwitchAccountResponse.html b/docs/interfaces/SwitchAccountResponse.html new file mode 100644 index 00000000..711d70bc --- /dev/null +++ b/docs/interfaces/SwitchAccountResponse.html @@ -0,0 +1,170 @@ +SwitchAccountResponse | ig-trading-api
+
+ +
+
+
+
+ +

Interface SwitchAccountResponse

+
+

Hierarchy

+
    +
  • SwitchAccountResponse
+
+
+
+ +
+
+

Properties

+
+ +
dealingEnabled: boolean
+
+ +
hasActiveDemoAccounts: boolean
+
+ +
hasActiveLiveAccounts: boolean
+
+ +
trailingStopsEnabled: boolean
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/TradingSession.html b/docs/interfaces/TradingSession.html new file mode 100644 index 00000000..74802607 --- /dev/null +++ b/docs/interfaces/TradingSession.html @@ -0,0 +1,177 @@ +TradingSession | ig-trading-api
+
+ +
+
+
+
+ +

Interface TradingSession

+
+

Hierarchy

+
    +
  • TradingSession
+
+
+
+ +
+
+

Properties

+
+ +
accountId: string
+
+ +
clientId: string
+
+ +
lightstreamerEndpoint: string
+
+ +
oauthToken: OauthToken
+
+ +
timezoneOffset: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/Transaction.html b/docs/interfaces/Transaction.html new file mode 100644 index 00000000..3592ab35 --- /dev/null +++ b/docs/interfaces/Transaction.html @@ -0,0 +1,233 @@ +Transaction | ig-trading-api
+
+ +
+
+
+
+ +

Interface Transaction

+
+

Hierarchy

+
    +
  • Transaction
+
+
+
+ +
+
+

Properties

+
+ +
cashTransaction: boolean
+
+ +
closeLevel: string
+
+ +
currency: string
+
+ +
date: string
+
+ +
dateUtc: Date
+
+ +
instrumentName: string
+
+ +
openDateUtc: Date
+
+ +
openLevel: string
+
+ +
period: string
+
+ +
profitAndLoss: string
+
+ +
reference: string
+
+ +
size: string
+
+ +
transactionType: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/TransactionHistoryRequest.html b/docs/interfaces/TransactionHistoryRequest.html new file mode 100644 index 00000000..4292fc0f --- /dev/null +++ b/docs/interfaces/TransactionHistoryRequest.html @@ -0,0 +1,184 @@ +TransactionHistoryRequest | ig-trading-api
+
+ +
+
+
+
+ +

Interface TransactionHistoryRequest

+
+

Hierarchy

+
    +
  • TransactionHistoryRequest
+
+
+
+ +
+
+

Properties

+
+ +
from?: string
+
+ +
maxSpanSeconds?: number
+
+ +
pageNumber?: number
+
+ +
pageSize?: number
+
+ +
to?: string
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/TransactionHistoryResponse.html b/docs/interfaces/TransactionHistoryResponse.html new file mode 100644 index 00000000..7c811a1d --- /dev/null +++ b/docs/interfaces/TransactionHistoryResponse.html @@ -0,0 +1,156 @@ +TransactionHistoryResponse | ig-trading-api
+
+ +
+
+
+
+ +

Interface TransactionHistoryResponse

+
+

Hierarchy

+
    +
  • TransactionHistoryResponse
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
transactions: Transaction[]
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/TransactionMetadata.html b/docs/interfaces/TransactionMetadata.html new file mode 100644 index 00000000..d402eb45 --- /dev/null +++ b/docs/interfaces/TransactionMetadata.html @@ -0,0 +1,156 @@ +TransactionMetadata | ig-trading-api
+
+ +
+
+
+
+ +

Interface TransactionMetadata

+
+

Hierarchy

+
    +
  • TransactionMetadata
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
size: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/interfaces/TransactionPaging.html b/docs/interfaces/TransactionPaging.html new file mode 100644 index 00000000..3b6e9d69 --- /dev/null +++ b/docs/interfaces/TransactionPaging.html @@ -0,0 +1,163 @@ +TransactionPaging | ig-trading-api
+
+ +
+
+
+
+ +

Interface TransactionPaging

+
+

Hierarchy

+
    +
  • TransactionPaging
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
pageNumber: number
+
+ +
pageSize: number
+
+ +
totalPages: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/modules.html b/docs/modules.html new file mode 100644 index 00000000..19fd10fd --- /dev/null +++ b/docs/modules.html @@ -0,0 +1,235 @@ +ig-trading-api
+
+ +
+
+
+
+

ig-trading-api

+
+
+
+ +
+
+

References

+
+
+

Enumerations

+
+
+

Classes

+
+
+

Interfaces

+
+
+

Type Aliases

+
+
+

References

+
+Renames and re-exports APIClient
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/types/MarketDetails.html b/docs/types/MarketDetails.html new file mode 100644 index 00000000..2f9659cf --- /dev/null +++ b/docs/types/MarketDetails.html @@ -0,0 +1,130 @@ +MarketDetails | ig-trading-api
+
+ +
+
+
+
+ +

Type alias MarketDetails

+
MarketDetails: {
    marketDetails: MarketDetail[];
}
+
+

Type declaration

+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file