New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

binary-indicators

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binary-indicators - npm Package Compare versions

Comparing version 1.5.0 to 1.5.1

2

lib/macd.js

@@ -49,5 +49,5 @@ 'use strict';

return [+(x - smaArray[i]).toFixed(pipSize), x, smaArray[i]];
});
}).slice(slowEmaPeriod + signalSmaPeriod - 2);
};
exports.default = macdArray;
{
"name": "binary-indicators",
"version": "1.5.0",
"version": "1.5.1",
"description": "Binary.com Indicators",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -39,5 +39,7 @@ import { takeField } from './math';

return macdCalcArray.map((x, i) =>
[+(x - smaArray[i]).toFixed(pipSize), x, smaArray[i]]);
[+(x - smaArray[i]).toFixed(pipSize), x, smaArray[i]])
.slice(slowEmaPeriod + signalSmaPeriod - 2)
;
};
export default macdArray;
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc