Subtract A - B
Subtraction is an operation that represents removal of objects from a collection
The Subtract A - B block in the GraphLinq IDE is an essential mathematical component that calculates the difference between two numeric values. This block allows developers to perform subtraction operations on various numeric data types, enabling them to handle scenarios where finding the difference between two values is necessary.
Block Description
The Subtract A - B block belongs to the Math blocks category in the GraphLinq IDE. Like other blocks in this category, it is a non-executive block, meaning it does not have yellow connectors and is implicitly called when other blocks require its output during graph execution.
Input Parameters
The Subtract A - B block requires two input parameters:
A (Numeric Type): The A input represents the first numeric value for the subtraction operation.
B (Numeric Type): The B input denotes the second numeric value to be subtracted from the first value.
Both A and B can be any type of numeric data, such as decimal, integer, or long. The two data types do not need to match; for instance, you can subtract a decimal value from an integer value.
Output
The Subtract A - B block outputs the result of the subtraction operation between A and B. The output will be of the same numeric type as the input values.
Example Use Case
Let's explore a practical example demonstrating the usage of the Subtract A - B block in a graph:
The graph retrieves two numerical values, "TotalRevenue" and "OperatingCost," which represent a company's financial data.
The Subtract A - B block is invoked, with TotalRevenue as input A and OperatingCost as input B.
The block calculates the difference between TotalRevenue and OperatingCost, yielding the net income or profit generated by the company.
The output of the Subtract A - B block represents the net income, which can be further utilized for analysis, display, or other financial computations.
In this example, the Subtract A - B block enables the graph to perform a fundamental subtraction operation, allowing developers to compute key financial metrics, such as profit or loss, and make informed decisions based on the calculated results.
The Subtract A - B block is a critical mathematical tool in the GraphLinq IDE, providing the ability to calculate the difference between two numeric values. Its versatility allows for various applications, such as financial modeling, data analysis, and performance evaluations. By leveraging the Subtract A - B block, developers can handle subtraction operations efficiently within their graphs, ensuring accuracy and precision in the final output.
More Information
Use Case
The "Subtract A - B" block is incredibly useful in scenarios where you need to calculate the difference or change between two numerical values. It is commonly employed in financial applications for calculating profits or losses, in data analysis for finding variations between data points, and in various other mathematical computations that involve subtraction.
Example
Let's consider an example where we have two variables, A = 10 and B = 5. By connecting these variables to the "Subtract A - B" block, the result will be 5. This represents the difference between A and B.
Full Example
Subtract A - B
blocks subtract one given number from another, and then output the result.
Subtract A - B
blocks have two input parameters called "A" and "B". These are, of course, the two numbers we want to calculate the difference of. Note that these input parameters can be supplied with any type of numeric data (decimal, integer, long), and the two data types do not need to match (ie: you can subtract a decimal value from an integer value).
This example is somewhat involved. The point of this graph is to print the 5-minute candle delta (change in price over 5 minutes) of the GLQ token, every 5 minutes. Since we are calculating the difference of two prices, we benefit from the use of a Subtract A - B
block.
Note that the yellow executive output on the Get CoinGecko Coin
block is plugged directly into the Print
block, which means that this is the next block to be called after the Get CoinGecko Coin
block. However, for the Print
block to execute, its "Message" parameter must be supplied with a value. This causes the Replace String In String
block to resolve, which in turn causes the Subtract A - B
block to resolve. This is an example of implicit calling, where a non-executive block is called only when its output is required by some other block's input.
Last updated