This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yodlee_data_status_message | |
possible values: | |
"syncing" | |
"synced" | |
"error" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// /api/v1/portfolio/<id>/stats/ | |
var dummyDataPortfolioStats = { | |
month_change : -2353.25, | |
cash_on_hand : 253355.20, | |
drawdown : -49376, | |
annual_return : 0.5, | |
annual_risk : 0.4, | |
sharpe : 0.7, | |
beta : 0.1, | |
profit: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ServerName arpiedev.crisply.com | |
<VirtualHost *:80> | |
RewriteEngine on | |
RewriteCond %{HTTPS} !=on | |
RewriteRule ^(.*)$ https://%{SERVER_NAME}$1 [NE,R,L] | |
</VirtualHost> | |
<IfModule ssl_module> | |
<VirtualHost _default_:443> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
"use strict"; | |
angular.module("myApp") | |
.directive("myDirective, function() { | |
// blanket linker function | |
function linker($scope, $element, $attrs) { | |